public Rhino.Geometry.Point4d ToPoint4d()
 {
   Rhino.Geometry.Point4d v = new Rhino.Geometry.Point4d();
   UnsafeNativeMethods.Rdk_Variant_Get4dPointValue(ConstPointer(), ref v);
   return v;
 }
 public Point4dField(string internalName, string friendlyName, Rhino.Geometry.Point4d defaultValue)
   : base(internalName, friendlyName)
 {
   m_defaultValue = defaultValue;
 }
Exemple #3
0
 public void SetValue(Rhino.Geometry.Point4d v)
 {
     UnsafeNativeMethods.Rdk_Variant_Set4dPointValue(NonConstPointer(), v);
 }
Exemple #4
0
 public Rhino.Geometry.Point4d ToPoint4d()
 {
     Rhino.Geometry.Point4d v = new Rhino.Geometry.Point4d();
     UnsafeNativeMethods.Rdk_Variant_Get4dPointValue(ConstPointer(), ref v);
     return(v);
 }
Exemple #5
0
 public Variant(Rhino.Geometry.Point4d v) : this()
 {
     SetValue(v);
 }