상속: IDisposable
예제 #1
0
 public bool isDisjoint(BoundBox box) {
   bool ret = touchvgPINVOKE.BoundBox_isDisjoint(swigCPtr, BoundBox.getCPtr(box));
   if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
예제 #2
0
 public BoundBox extend(Point2d pnt) {
   BoundBox ret = new BoundBox(touchvgPINVOKE.BoundBox_extend(swigCPtr, Point2d.getCPtr(pnt)), false);
   if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
예제 #3
0
 public BoundBox swell(float distance) {
   BoundBox ret = new BoundBox(touchvgPINVOKE.BoundBox_swell(swigCPtr, distance), false);
   return ret;
 }
예제 #4
0
 public BoundBox set(Point2d arg0, Vector2d dir1, Vector2d dir2) {
   BoundBox ret = new BoundBox(touchvgPINVOKE.BoundBox_set__SWIG_1(swigCPtr, Point2d.getCPtr(arg0), Vector2d.getCPtr(dir1), Vector2d.getCPtr(dir2)), false);
   if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
예제 #5
0
 public BoundBox set(Point2d pnt1, Point2d pnt2) {
   BoundBox ret = new BoundBox(touchvgPINVOKE.BoundBox_set__SWIG_0(swigCPtr, Point2d.getCPtr(pnt1), Point2d.getCPtr(pnt2)), false);
   if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
예제 #6
0
 public BoundBox(BoundBox box) : this(touchvgPINVOKE.new_BoundBox__SWIG_3(BoundBox.getCPtr(box)), true) {
   if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
 }
예제 #7
0
 internal static HandleRef getCPtr(BoundBox obj) {
   return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
예제 #8
0
 public BoundBox setToRect() {
   BoundBox ret = new BoundBox(touchvgPINVOKE.BoundBox_setToRect(swigCPtr), false);
   return ret;
 }