示例#1
0
        public IPlaneEntity PlaneByOriginNormal(IPointEntity origin, IVectorEntity normal)
        {
            DSGeometryApplication.Check();
            IPlaneEntity plane = new PlaneEntity(origin, normal);

            return(plane);
        }
示例#2
0
 public IPlaneEntity PlaneByOriginNormal(IPointEntity origin, IVector normal)
 {
     DSGeometryApplication.Check();
     IPlaneEntity plane = new PlaneEntity();
     plane.Update(origin, normal);
     return plane;
 }