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