Curve that touches three points: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with ";Task: Draw a curve that touches 3 points (1 starting point, 2 medium, 3 final point) ::#  Do not use functions of a library, implement the curve() function yourself ::#...")
 
m (changed a (¿ non-task thingy ?) to a "draft task".)
Line 1: Line 1:
{{draft task}}
;Task:

Draw a curve that touches 3 points (1 starting point, 2 medium, 3 final point)
Draw a curve that touches 3 points (1 starting point, 2 medium, 3 final point)



Revision as of 23:21, 2 November 2018

Curve that touches three points is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

Draw a curve that touches 3 points (1 starting point, 2 medium, 3 final point)

  1.  Do not use functions of a library, implement the curve() function yourself
  2.  coordinates:(x,y) starting point (10,10) medium point (100,200) final point (200,10)