Inheritance: IDisposable
コード例 #1
0
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 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
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 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
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 public BoundBox swell(float distance) {
   BoundBox ret = new BoundBox(touchvgPINVOKE.BoundBox_swell(swigCPtr, distance), false);
   return ret;
 }
コード例 #4
0
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 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
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 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
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 public BoundBox(BoundBox box) : this(touchvgPINVOKE.new_BoundBox__SWIG_3(BoundBox.getCPtr(box)), true) {
   if (touchvgPINVOKE.SWIGPendingException.Pending) throw touchvgPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #7
0
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 internal static HandleRef getCPtr(BoundBox obj) {
   return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
コード例 #8
0
ファイル: BoundBox.cs プロジェクト: rhcad/touchvg-v0.6
 public BoundBox setToRect() {
   BoundBox ret = new BoundBox(touchvgPINVOKE.BoundBox_setToRect(swigCPtr), false);
   return ret;
 }