public NXObjectAooearancePoint(params NXObject[] objs)
 {
     this.objs     = objs.ToList();
     this.workPart = Session.GetSession().Parts.Work;
     user          = UserSingleton.Instance();
     GetBoundingBox();
 }
Exemplo n.º 2
0
 public static UserSingleton Instance()
 {
     if (user == null)
     {
         user = new UserSingleton();
     }
     return(user);
 }
Exemplo n.º 3
0
 public MoveCsysBuilder(CoordinateSystem csys)
 {
     this.csys = csys;
     this.user = UserSingleton.Instance();
 }
Exemplo n.º 4
0
 public AddAndDeleteData()
 {
     this.users = UserSingleton.Instance();
     this.auth  = AuthenticatedUser.GetAuthenticated();
 }
 public MovePointToPointBuilder(Point3d startPt, Point3d endPt)
 {
     this.startPt = startPt;
     this.endPt   = endPt;
     this.user    = UserSingleton.Instance();
 }
Exemplo n.º 6
0
 public MoveRotateBuilder(Vector3d vec, double angle)
 {
     this.vec   = vec;
     this.angle = angle;
     this.user  = UserSingleton.Instance();
 }