VB DotNet Types
Boolean
Contains either True or False.
Char
Contains any single Unicode character enclosed in double quotation marks followed by a c, for example "x"c
Byte
May contain integers from 0-255
Integer
Ranges from -2,147,483,648 to 2,147,483,647
Double
Ranges from ±5.0 × 10-324 to ±1.7 × 10308 with 15-16 digits precision.
Rhino DotNet Types
On2dPoint
x as Double
y as Double
Mainly used for parameter space points.
The “d” in the class name stand for double precision
floating point number. There are other points classes
that has “f” in the name that use single precision.
y as Double
Mainly used for parameter space points.
The “d” in the class name stand for double precision
floating point number. There are other points classes
that has “f” in the name that use single precision.
On3dPoint
x as Double
y as Double
z as Double
Most commonly used to represent points in three
dimensional coordinate space
y as Double
z as Double
Most commonly used to represent points in three
dimensional coordinate space