Is there a command or series of commands that can do the same thing as NEWXVALUE OR NEWZVALUE?
Here is the definition of the command:
This command is used in conjunction with NEWXVALUE and NEWYVALUE commands to move from one point in space to another point in space based on a specified angle. Rather than using COS/SIN maths, these commands simplify the task of moving coordinates within 3D space. The step value specifies how far in the specified direction you would like to calculate. The parameters should be specified using real numbers.
Here is an example:
X#=320
Z#=400
DO
X#=NEWXVALUE(X#,0,1)
Z#=NEWYVALUE(Z#,0,1)
DOT X#,Z#
LOOP
Here is the Syntax:
Return Float=NEWZVALUE(Current Z Value, Angle Value, Step Value)
Here are the parameters:
Current Z Value
Float
This value is a float number such as 0.5
Angle Value
Float
Specify the angle value in degrees between 0 and 360.
Step Value
Float
This value is a float number such as 0.5
So, is there a .fpi command that will do this? Or can a series of commands do this?
Thanks, to anyone who can help.
Cheers.
God help me, Please.