F64 Library Question
Posted: Mon Nov 15, 2004 1:56 am
				
				Hello,
I am a bit disappointed that PureBasic does not support double type variables at this time, since most of the CAD APIs I am working with need this functionality to work correctly. I am trying to use the F64 add on library. Using the following code below. How would I correctly assign float values to the doubles StartLine \x \y and EndLine x\ \y ?
Structure Point2D
x.double
y.double
EndStructure
Dim StartLine.Point2D(1)
Dim EndLine.Point2D(1)
StartLine(0) \x
StartLine(0) \y
EndLine(0) \x
Endline(0) \y
Thank You
			I am a bit disappointed that PureBasic does not support double type variables at this time, since most of the CAD APIs I am working with need this functionality to work correctly. I am trying to use the F64 add on library. Using the following code below. How would I correctly assign float values to the doubles StartLine \x \y and EndLine x\ \y ?
Structure Point2D
x.double
y.double
EndStructure
Dim StartLine.Point2D(1)
Dim EndLine.Point2D(1)
StartLine(0) \x
StartLine(0) \y
EndLine(0) \x
Endline(0) \y
Thank You