Ejemplo n.º 1
0
 public static int FilletPolyline(ObjectId polylineId)
 {
     return(CommandLineHelper.Command("._FILLET", "_P", polylineId));
 }
Ejemplo n.º 2
0
 public static int SetFilletRadius(double filletRadius)
 {
     return(CommandLineHelper.Command("._FILLET", "_R", filletRadius));
 }
Ejemplo n.º 3
0
 public static int ZoomCenter(Point3d center, double height)
 {
     return(CommandLineHelper.Command("._ZOOM", "_C", center, height));
 }
Ejemplo n.º 4
0
 public static int ZoomWindow(Point3d corner1, Point3d corner2)
 {
     return(CommandLineHelper.Command("._ZOOM", "_W", corner1, corner2));
 }
Ejemplo n.º 5
0
        // Sample member functions that use the Command() method.

        public static int ZoomExtents()
        {
            return(CommandLineHelper.Command("._ZOOM", "_E"));
        }