Exemplo n.º 1
0
 public ExGripDrag(ObjectId id, ExGripManager pOwner)
 {
     ObjectId[] arrId = new ObjectId[1];
     arrId[0]   = id;
     subentPath = new FullSubentityPath(arrId, SubentityId.Null);
     m_pOwner   = pOwner;
 }
Exemplo n.º 2
0
 public ExGripData()
 {
     m_status     = GripData.DrawType.WarmGrip;
     m_bInvisible = false;
     m_bShared    = false;
     m_point      = Point3d.Origin;
     m_entPath    = new FullSubentityPath();
     m_pOwner     = null;
 }
Exemplo n.º 3
0
 public ExGripData(FullSubentityPath entPath, GripData pData, Point3d pt, ExGripManager pOwner)
 {
     m_status     = GripData.DrawType.WarmGrip;
     m_bInvisible = false;
     m_bShared    = false;
     m_point      = pt;
     m_pData      = pData;
     m_entPath    = entPath;
     m_pOwner     = pOwner;
 }
Exemplo n.º 4
0
 public ExGripData(ObjectId id, Point3d pt, ExGripManager pOwner)
 {
     m_status     = GripData.DrawType.WarmGrip;
     m_bInvisible = false;
     m_bShared    = false;
     m_point      = pt;
     ObjectId[] arrId = new ObjectId[1];
     arrId[0]  = id;
     m_entPath = new FullSubentityPath(arrId, SubentityId.Null);
     m_pOwner  = pOwner;
     m_pData   = null;
 }
Exemplo n.º 5
0
 public ExGripDrag(FullSubentityPath entPath, ExGripManager pOwner)
 {
     subentPath = entPath;
     m_pOwner   = pOwner;
 }
Exemplo n.º 6
0
 public void uninit()
 {
     cloneEnt = null;
     m_pOwner = null;
 }
Exemplo n.º 7
0
 public ExGripDrag()
 {
     m_pOwner = null;
 }