Example #1
0
 /// <summary>
 /// Sums two numbers
 /// </summary>
 public static double Sum(double a, double b)
 {
     return(UnsafeNativeMethods.MooseSum(a, b));
 }
Example #2
0
 /// <summary>
 /// Adds a point to the Rhino document
 /// </summary>
 public static Guid AddPoint(Point3d point)
 {
     return(UnsafeNativeMethods.MooseAddPoint(point));
 }
Example #3
0
 /// <summary>
 /// Prints a message to the Rhino command line.
 /// </summary>
 public static void Print(string str)
 {
     UnsafeNativeMethods.MoosePrint(str);
 }