Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
OdGeCircArc3d.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace Teigha.Core {
12
13using System;
14using System.Runtime.InteropServices;
15
16public class OdGeCircArc3d : OdGeCurve3d {
17 private Object locker = new Object();
18 private HandleRef swigCPtr;
19 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
20 public OdGeCircArc3d(IntPtr cPtr, bool cMemoryOwn) : base(GlobalsPINVOKE.OdGeCircArc3d_SWIGUpcast(cPtr), cMemoryOwn) {
21 swigCPtr = new HandleRef(this, cPtr);
22 }
23
24 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
25 public static HandleRef getCPtr(OdGeCircArc3d obj) {
26 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
27 }
28
29 protected override void Dispose(bool disposing) {
30 lock(this) {
31 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
32 if (swigCMemOwn) {
33 swigCMemOwn = false;
35 }
36 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
37 }
38 base.Dispose(disposing);
39 }
40 }
41
42 public OdGeCircArc3d() : this(GlobalsPINVOKE.new_OdGeCircArc3d__SWIG_0(), true) {
44 }
45
46 public OdGeCircArc3d(OdGeCircArc3d source) : this(GlobalsPINVOKE.new_OdGeCircArc3d__SWIG_1(OdGeCircArc3d.getCPtr(source)), true) {
48 }
49
52 }
53
56 }
57
60 }
61
64 }
65
68 }
69
73 return ret;
74 }
75
79 return ret;
80 }
81
82 public bool intersectWith(OdGeLinearEnt3d line, out int numInt, OdGePoint3d p1, OdGePoint3d p2, OdGeTol tol) {
85 return ret;
86 }
87
88 public bool intersectWith(OdGeLinearEnt3d line, out int numInt, OdGePoint3d p1, OdGePoint3d p2) {
91 return ret;
92 }
93
94 public bool intersectWith(OdGeCircArc3d arc, out int numInt, OdGePoint3d p1, OdGePoint3d p2, OdGeTol tol) {
97 return ret;
98 }
99
100 public bool intersectWith(OdGeCircArc3d arc, out int numInt, OdGePoint3d p1, OdGePoint3d p2) {
103 return ret;
104 }
105
106 public bool intersectWith(OdGePlanarEnt plane, out int numInt, OdGePoint3d p1, OdGePoint3d p2, OdGeTol tol) {
109 return ret;
110 }
111
112 public bool intersectWith(OdGePlanarEnt plane, out int numInt, OdGePoint3d p1, OdGePoint3d p2) {
115 return ret;
116 }
117
118 public bool projIntersectWith(OdGeLinearEnt3d line, OdGeVector3d projDir, out int numInt, OdGePoint3d pntOnArc1, OdGePoint3d pntOnArc2, OdGePoint3d pntOnLine1, OdGePoint3d pntOnLine2, OdGeTol tol) {
119 bool ret = GlobalsPINVOKE.OdGeCircArc3d_projIntersectWith__SWIG_0(swigCPtr, OdGeLinearEnt3d.getCPtr(line), OdGeVector3d.getCPtr(projDir), out numInt, OdGePoint3d.getCPtr(pntOnArc1), OdGePoint3d.getCPtr(pntOnArc2), OdGePoint3d.getCPtr(pntOnLine1), OdGePoint3d.getCPtr(pntOnLine2), OdGeTol.getCPtr(tol));
121 return ret;
122 }
123
124 public bool projIntersectWith(OdGeLinearEnt3d line, OdGeVector3d projDir, out int numInt, OdGePoint3d pntOnArc1, OdGePoint3d pntOnArc2, OdGePoint3d pntOnLine1, OdGePoint3d pntOnLine2) {
125 bool ret = GlobalsPINVOKE.OdGeCircArc3d_projIntersectWith__SWIG_1(swigCPtr, OdGeLinearEnt3d.getCPtr(line), OdGeVector3d.getCPtr(projDir), out numInt, OdGePoint3d.getCPtr(pntOnArc1), OdGePoint3d.getCPtr(pntOnArc2), OdGePoint3d.getCPtr(pntOnLine1), OdGePoint3d.getCPtr(pntOnLine2));
127 return ret;
128 }
129
130 public bool tangent(OdGePoint3d point, OdGeLine3d line, OdGeTol tol) {
133 return ret;
134 }
135
136 public bool tangent(OdGePoint3d point, OdGeLine3d line) {
139 return ret;
140 }
141
142 public bool tangent(OdGePoint3d point, OdGeLine3d line, OdGeTol tol, out OdGe.ErrorCondition status) {
143 bool ret = GlobalsPINVOKE.OdGeCircArc3d_tangent__SWIG_2(swigCPtr, OdGePoint3d.getCPtr(point), OdGeLine3d.getCPtr(line), OdGeTol.getCPtr(tol), out status);
145 return ret;
146 }
147
148 public void getPlane(OdGePlane plane) {
151 }
152
153 public bool isInside(OdGePoint3d point, OdGeTol tol) {
156 return ret;
157 }
158
159 public bool isInside(OdGePoint3d point) {
162 return ret;
163 }
164
168 return ret;
169 }
170
174 return ret;
175 }
176
180 return ret;
181 }
182
183 public double radius() {
184 double ret = GlobalsPINVOKE.OdGeCircArc3d_radius(swigCPtr);
186 return ret;
187 }
188
189 public double startAng() {
190 double ret = GlobalsPINVOKE.OdGeCircArc3d_startAng(swigCPtr);
192 return ret;
193 }
194
195 public double endAng() {
196 double ret = GlobalsPINVOKE.OdGeCircArc3d_endAng(swigCPtr);
198 return ret;
199 }
200
204 return ret;
205 }
206
210 return ret;
211 }
212
216 return ret;
217 }
218
222 return ret;
223 }
224
228 return ret;
229 }
230
231 public OdGeCircArc3d setAngles(double startAng, double endAng) {
234 return ret;
235 }
236
240 return ret;
241 }
242
246 return ret;
247 }
248
252 return ret;
253 }
254
258 return ret;
259 }
260
261 public OdGeCircArc3d set(OdGeCurve3d curve1, OdGeCurve3d curve2, double radius, out double param1, out double param2, out bool success) {
262 OdGeCircArc3d ret = new OdGeCircArc3d(GlobalsPINVOKE.OdGeCircArc3d_set__SWIG_4(swigCPtr, OdGeCurve3d.getCPtr(curve1), OdGeCurve3d.getCPtr(curve2), radius, out param1, out param2, out success), false);
264 return ret;
265 }
266
267 public OdGeCircArc3d set(OdGeCurve3d curve1, OdGeCurve3d curve2, OdGeCurve3d curve3, out double param1, out double param2, out double param3, out bool success) {
268 OdGeCircArc3d ret = new OdGeCircArc3d(GlobalsPINVOKE.OdGeCircArc3d_set__SWIG_5(swigCPtr, OdGeCurve3d.getCPtr(curve1), OdGeCurve3d.getCPtr(curve2), OdGeCurve3d.getCPtr(curve3), out param1, out param2, out param3, out success), false);
270 return ret;
271 }
272
276 return ret;
277 }
278
279 public void getGeomExtents(OdGeExtents3d extents) {
282 }
283
284 public OdGeCircArc3d joinWith(OdGeCircArc3d curve, OdGeTol iTolerance) {
287 return ret;
288 }
289
293 return ret;
294 }
295
300 public Teigha.Core.OdGe.EntityId vb_type() { return this.type(); }
301
302}
303
304}
static global::System.Exception Retrieve()
static global::System.IntPtr OdGeCircArc3d_normal(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool OdGeCircArc3d_tangent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr OdGeCircArc3d_setCenter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr OdGeCircArc3d_center(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdGeCircArc3d_set__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out OdGe.ErrorCondition jarg5)
static void delete_OdGeCircArc3d(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdGeCircArc3d_set__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool OdGeCircArc3d_intersectWith__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static bool OdGeCircArc3d_tangent__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, out OdGe.ErrorCondition jarg5)
static global::System.IntPtr OdGeCircArc3d_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static double OdGeCircArc3d_startAng(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool OdGeCircArc3d_tangent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void OdGeCircArc3d_getPlane(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool OdGeCircArc3d_intersectWith__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr OdGeCircArc3d_setAxes(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool OdGeCircArc3d_isInside__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static double OdGeCircArc3d_endAng(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdGeCircArc3d_setRadius(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr OdGeCircArc3d_startPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool OdGeCircArc3d_projIntersectWith__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static global::System.IntPtr OdGeCircArc3d_closestPointToPlane__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr OdGeCircArc3d_set__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, double jarg5, double jarg6, double jarg7)
static global::System.IntPtr OdGeCircArc3d_joinWith__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr OdGeCircArc3d_refVec(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdGeCircArc3d_set__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, double jarg4)
static global::System.IntPtr OdGeCircArc3d_joinWith__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr OdGeCircArc3d_endPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdGeCircArc3d_setAngles(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3)
static double OdGeCircArc3d_radius(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OdGeCircArc3d_set__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, HandleRef jarg4, out double jarg5, out double jarg6, out double jarg7, out bool jarg8)
static global::System.IntPtr OdGeCircArc3d_set__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2, HandleRef jarg3, double jarg4, out double jarg5, out double jarg6, out bool jarg7)
static bool OdGeCircArc3d_intersectWith__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr OdGeCircArc3d_closestPointToPlane__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool OdGeCircArc3d_intersectWith__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static bool OdGeCircArc3d_projIntersectWith__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, out int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void OdGeCircArc3d_getGeomExtents(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool OdGeCircArc3d_intersectWith__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool OdGeCircArc3d_intersectWith__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool OdGeCircArc3d_isInside__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
bool isInside(OdGePoint3d point)
OdGeCircArc3d(OdGePoint3d startPoint, OdGePoint3d secondPoint, OdGePoint3d endPoint)
bool intersectWith(OdGeCircArc3d arc, out int numInt, OdGePoint3d p1, OdGePoint3d p2, OdGeTol tol)
OdGeCircArc3d(OdGePoint3d center, OdGeVector3d normal, OdGeVector3d refVec, double radius, double startAng)
bool intersectWith(OdGeLinearEnt3d line, out int numInt, OdGePoint3d p1, OdGePoint3d p2)
OdGeCircArc3d joinWith(OdGeCircArc3d curve)
void getGeomExtents(OdGeExtents3d extents)
bool intersectWith(OdGePlanarEnt plane, out int numInt, OdGePoint3d p1, OdGePoint3d p2)
bool tangent(OdGePoint3d point, OdGeLine3d line)
OdGeCircArc3d(OdGePoint3d center, OdGeVector3d normal, double radius)
OdGeCircArc3d(OdGePoint3d center, OdGeVector3d normal, OdGeVector3d refVec, double radius, double startAng, double endAng)
static HandleRef getCPtr(OdGeCircArc3d obj)
OdGeCircArc3d(IntPtr cPtr, bool cMemoryOwn)
bool intersectWith(OdGeLinearEnt3d line, out int numInt, OdGePoint3d p1, OdGePoint3d p2, OdGeTol tol)
override void Dispose(bool disposing)
bool intersectWith(OdGeCircArc3d arc, out int numInt, OdGePoint3d p1, OdGePoint3d p2)
void getPlane(OdGePlane plane)
OdGePoint3d closestPointToPlane(OdGePlanarEnt plane, OdGePoint3d pointOnPlane)
bool tangent(OdGePoint3d point, OdGeLine3d line, OdGeTol tol, out OdGe.ErrorCondition status)
bool isInside(OdGePoint3d point, OdGeTol tol)
OdGeCircArc3d setRadius(double radius)
OdGeCircArc3d Assign(OdGeCircArc3d arc)
OdGeCircArc3d(OdGePoint3d center, OdGeVector3d normal, OdGeVector3d refVec, double radius)
OdGeCircArc3d setAxes(OdGeVector3d normal, OdGeVector3d refVec)
Teigha.Core.OdGe.EntityId vb_type()
OdGeCircArc3d setCenter(OdGePoint3d center)
OdGeCircArc3d joinWith(OdGeCircArc3d curve, OdGeTol iTolerance)
bool tangent(OdGePoint3d point, OdGeLine3d line, OdGeTol tol)
OdGePoint3d closestPointToPlane(OdGePlanarEnt plane, OdGePoint3d pointOnPlane, OdGeTol tol)
OdGeCircArc3d setAngles(double startAng, double endAng)
bool projIntersectWith(OdGeLinearEnt3d line, OdGeVector3d projDir, out int numInt, OdGePoint3d pntOnArc1, OdGePoint3d pntOnArc2, OdGePoint3d pntOnLine1, OdGePoint3d pntOnLine2, OdGeTol tol)
OdGeCircArc3d(OdGeCircArc3d source)
bool projIntersectWith(OdGeLinearEnt3d line, OdGeVector3d projDir, out int numInt, OdGePoint3d pntOnArc1, OdGePoint3d pntOnArc2, OdGePoint3d pntOnLine1, OdGePoint3d pntOnLine2)
bool intersectWith(OdGePlanarEnt plane, out int numInt, OdGePoint3d p1, OdGePoint3d p2, OdGeTol tol)
static HandleRef getCPtr(OdGeCurve3d obj)
Definition: OdGeCurve3d.cs:25
OdGe.EntityId type()
Definition: OdGeEntity3d.cs:57
static HandleRef getCPtr(OdGeExtents3d obj)
static HandleRef getCPtr(OdGeLine3d obj)
Definition: OdGeLine3d.cs:25
static HandleRef getCPtr(OdGeLinearEnt3d obj)
static HandleRef getCPtr(OdGePlanarEnt obj)
static HandleRef getCPtr(OdGePlane obj)
Definition: OdGePlane.cs:25
static HandleRef getCPtr(OdGePoint3d obj)
Definition: OdGePoint3d.cs:26
static HandleRef getCPtr(OdGeTol obj)
Definition: OdGeTol.cs:26
static HandleRef getCPtr(OdGeVector3d obj)
Definition: OdGeVector3d.cs:26