- Bezium curve in Ice programming help
- 15 Jul 2018 05:12:36 pm
- Last edited by Jcsq6 on 15 Jul 2018 05:16:14 pm; edited 1 time in total
All the math is correct but it's not displaying anything beetween the first and last point...
Code:
Btw you might have to be really smart to help
Code:
BEZIAR
60→A These are the points for the bezium curve... whats generating it
A→B
A→F
A+30→C
A+40→D
A+60→E
minY5,5,"07070707070707070707070707070707070707070707070707"→DOT
det(0
For(T,0,10
θ=0 and Y=1 SO QθX=Q0X \\ all of this is finding out where the points are
A+(C-A)*(T/10)→QθX
B+(D-B)*(T/10)→QθY
C+(E-C)*(T/10)→QYX
D+(F-D)*(T/10)→QYY
QθX+(QYX-QθX)*(T/10)→BX
QθY+(QYY-QθY)*(T/10)→BY
det(59,DOT,BX,BY \\ this is the thing displaying the points inside of the for loop
End
Pause
det(1
Btw you might have to be really smart to help