Home
last modified time | relevance | path

Searched refs:newCurve (Results 1 – 25 of 136) sorted by relevance

123456

/dports/net-im/convey/convey-src-0.3/src/org/convey/
H A DCubicCurveGraphicEvent.java14 protected CubicCurve2D newCurve; field in CubicCurveGraphicEvent
18 CubicCurve2D newCurve) { in CubicCurveGraphicEvent() argument
21 this.newCurve = (CubicCurve2D)newCurve.clone(); in CubicCurveGraphicEvent()
41 return this.newCurve; in getNewCurve()
44 public void setNewCurve(CubicCurve2D newCurve) { in setNewCurve() argument
45 this.newCurve = (CubicCurve2D)newCurve.clone(); in setNewCurve()
64 n.setAttribute("x1", String.valueOf(this.newCurve.getX1())); in toElement()
65 n.setAttribute("y1", String.valueOf(this.newCurve.getY1())); in toElement()
66 n.setAttribute("ctrlx1", String.valueOf(this.newCurve.getCtrlX1())); in toElement()
70 n.setAttribute("x2", String.valueOf(this.newCurve.getX2())); in toElement()
[all …]
H A DQuadCurveGraphicEvent.java14 protected QuadCurve2D newCurve; field in QuadCurveGraphicEvent
18 QuadCurve2D newCurve) { in QuadCurveGraphicEvent() argument
21 this.newCurve = (QuadCurve2D)newCurve.clone(); in QuadCurveGraphicEvent()
41 return this.newCurve; in getNewCurve()
44 public void setNewCurve(QuadCurve2D newCurve) { in setNewCurve() argument
45 this.newCurve = (QuadCurve2D)newCurve.clone(); in setNewCurve()
62 n.setAttribute("x1", String.valueOf(this.newCurve.getX1())); in toElement()
63 n.setAttribute("y1", String.valueOf(this.newCurve.getY1())); in toElement()
64 n.setAttribute("ctrlx", String.valueOf(this.newCurve.getCtrlX())); in toElement()
66 n.setAttribute("x2", String.valueOf(this.newCurve.getX2())); in toElement()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/ShapeCustom/
H A DShapeCustom_Curve.cxx55 Handle(Geom_Curve) newCurve; in Handle() local
57 if (BSpl.IsNull()) return newCurve; in Handle()
62 if ( ! closed ) return newCurve; in Handle()
111 if ( ! converted ) return newCurve; in Handle()
112 newCurve = BSpl; in Handle()
113 if ( substitute ) myCurve = newCurve; in Handle()
114 return newCurve; in Handle()
/dports/graphics/pencil2d/pencil-0.6.6/core_lib/src/graphics/vector/
H A Dvectorimage.cpp200 BezierCurve newCurve; in loadDomElement() local
202 mCurves.append(newCurve); in loadDomElement()
304 checkCurveExtremity(newCurve, tol); in insertCurve()
312 mCurves.append(newCurve); in insertCurve()
326 mCurves.insert(position, newCurve); in insertCurve()
328 updateImageSize(newCurve); in insertCurve()
351 QPointF P = newCurve.getVertex(-1); in checkCurveExtremity()
352 QPointF Q = newCurve.getVertex(newCurve.getVertexSize() - 1); in checkCurveExtremity()
355 newCurve.setVertex(newCurve.getVertexSize() - 1, P); in checkCurveExtremity()
364 QPointF Q = newCurve.getVertex(newCurve.getVertexSize() - 1); in checkCurveExtremity()
[all …]
H A Dvectorimage.h52 void insertCurve(int position, BezierCurve& newCurve, qreal factor, bool interacts);
53 void addCurve(BezierCurve& newCurve, qreal factor, bool interacts = true);
154 void checkCurveExtremity(BezierCurve& newCurve, qreal tolerance);
155 void checkCurveIntersections(BezierCurve& newCurve, qreal tolerance);
/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/dcmpstat/libsrc/
H A Ddvpscul.cc64 DVPSCurve *newCurve = NULL; in read() local
68 newCurve = new DVPSCurve(); in read()
69 if (newCurve) in read()
71 result = newCurve->read(dset,i); in read()
72 if (result==EC_Normal) list_.push_back(newCurve); else delete newCurve; in read()
/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/doc/manual/
H A Dsec_curve_object.tex8 dynamic allocation functions newCurve and freeCurve described below,
12 to newCurve.
13 By setting $icopy=1$, newCurve
15 But by setting $icopy=0$ or 2, newCurve simply points
20 \input{func/newCurve}
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/ui/region/
H A DNewCurveMode.java125 Curve newCurve; in mousePressed() local
127 newCurve = comp.addCloneCurve(p); in mousePressed()
130 newCurve = comp.addCurve(); in mousePressed()
132 comp.addPoint(newCurve, p); in mousePressed()
133 int index = comp.addPoint(newCurve, p); in mousePressed()
137 new FollowMouseMode(this, newCurve, index); in mousePressed()
H A DCurveComponent.java366 Curve newCurve = newSelection.nextCurve(); in selectionChanged() local
367 newCurve.highlightAllSegments(); in selectionChanged()
368 newBounds = newCurve.getPaintBounds(); in selectionChanged()
370 newCurve = newSelection.nextCurve(); in selectionChanged()
371 newCurve.highlightAllSegments(); in selectionChanged()
372 newBounds.add(newCurve.getPaintBounds()); in selectionChanged()
549 public void editingCurveChanged(Curve oldCurve, Curve newCurve) { in editingCurveChanged() argument
551 if (curves.contains(newCurve)) { in editingCurveChanged()
552 newCurve.highlightAll(); in editingCurveChanged()
553 newCurve.setShowInnerShape(true); in editingCurveChanged()
[all …]
H A DCurveSelection.java52 void addCurve(Curve newCurve) { in addCurve() argument
53 if (isSelected(newCurve)) { in addCurve()
58 curves.add(newCurve); in addCurve()
/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/doc/manual/func/
H A DnewCurve.tex2 \funclabel{newCurve}
7 \>SISLCurve *newCurve(\begin{minipg3}
42 \>\> {\fov newCurve} \> - \> \begin{minipg2}
44 to allocate space for the curve, newCurve
59 \>\>{\fov curve} = newCurve(\begin{minipg4}
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/gui/windows/
H A DCurveDialog.h32 void setCurve(const Curve& newCurve) { in setCurve() argument
33 curve = newCurve; in setCurve()
97 void setCurve(const Curve& newCurve) { in setCurve() argument
98 curve = newCurve; in setCurve()
/dports/math/gambit/gambit-16.0.1/src/labenski/src/
H A Dplotdata.cpp385 if (!newCurve.Ok()) return newCurve; in Append()
395 return newCurve; in Append()
412 return newCurve; in Append()
424 if (!newCurve.Ok()) return newCurve; in Insert()
442 return newCurve; in Insert()
470 return newCurve; in Insert()
475 wxPlotData newCurve; in Remove() local
495 newCurve = newCurve.Append(GetSubPlotData(index+count, -1)); in Remove()
499 return newCurve; in Remove()
509 if (!newCurve.Ok()) return newCurve; in GetSubPlotData()
[all …]
/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/src/
H A Ds1919.c160 tcurve = newCurve (in, ik, et, prev, 1, idim, 1);
177 tcurve = newCurve (in, ik, et, curr, 1, idim, 1);
194 tcurve = newCurve (in, ik, et, deriv, 1, idim, 1);
213 tcurve = newCurve (in, ik, et, follow, 1, idim, 1);
H A Ds1720.c167 if ((*rcnew=newCurve(pc->in,pc->ik,pc->et,pc->rcoef,
173 if ((*rcnew=newCurve(pc->in,pc->ik,pc->et,pc->ecoef,
192 rat = newCurve(pc->in, pc->ik, pc->et, ratcoef, 1, 1, 1);
263 q1 = newCurve(kn, kk, st, scoef, pc->ikind, pc->idim, 2);
350 if ((q1=newCurve(kn-2,kk,&st[1],&scoef[pc->idim],1,pc->idim,1))
H A Ds1436.c139 if ((qc = newCurve(ps1->in2,ps1->ik2,ps1->et2,scoef,1,
153 *rcurve = newCurve(ps1->in1,ps1->ik1,ps1->et1,scurve,kind,ps1->idim,1);
H A Ds1437.c157 qc = newCurve(ps1->in1,ps1->ik1,ps1->et1,scoef,1,kdim*ps1->in2,0);
167 *rcurve = newCurve(ps1->in2,ps1->ik2,ps1->et2,scurve,kind,ps1->idim,1);
H A Ds1750.c147 *rc = newCurve (in, ik, et, ebcoef, pc->ikind, idim, 1);
177 *rc = newCurve (inh, ikh, iknt, icoef, pc->ikind, idim, 2);
246 *rc = newCurve (inh, ikh, iknt, icoef, pc->ikind, idim, 2);
/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/app/
H A Ds1606prob.C61 cv[0] = newCurve(2, 2, knots, c0, 1, 3, 0); in main()
62 cv[1] = newCurve(2, 2, knots, c1, 1, 3, 0); in main()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/
H A Dcurve_simplify.py217 def setBezierHandles(newCurve): argument
219 for spline in newCurve.data.splines:
309 newCurve = bpy.data.objects.new("Simple_" + obj.name, curve)
311 coll.objects.link(newCurve)
312 newCurve.select_set(True)
314 context.view_layer.objects.active = newCurve
315 newCurve.matrix_world = obj.matrix_world
318 setBezierHandles(newCurve)
/dports/x11-fonts/py-booleanOperations/booleanOperations-0.8.2/Lib/booleanOperations/
H A Dflatten.py836 newCurve = [
846 convertedSegments.extend(newCurve)
850 newCurve = inputSegment.split(tValues)
851 newCurve = list(newCurve[curveNeeded])
853 newCurve[i] = replace
854newCurve = [OutputPoint(coordinates=p, segmentType=None) for p in newCurve[1:]]
855 newCurve[-1].segmentType = inputSegment.segmentType
857 newCurve[-1].smooth = lastPointWithAttributes.smooth
858 newCurve[-1].name = lastPointWithAttributes.name
859 newCurve[-1].kwargs = lastPointWithAttributes.kwargs
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/ShapeUpgrade/
H A DShapeUpgrade_FixSmallBezierCurves.cxx72 Handle(Geom_Curve) newCurve = AproxCurve.Curve(); in Approx()
109 Handle(Geom2d_Curve) newCurve = AproxCurve2d.Curve(); in Approx()
147 Handle(Geom2d_Curve) newCurve = AproxCurve2d.Curve(); in Approx()
H A DShapeUpgrade_ShapeConvertToBezier.cxx179 Handle(Geom2d_Curve) newRevCurve,newCurve; in Perform()
195 newCurve = bezier; in Perform()
198 GeomLib::SameRange(preci, c2d, first, last, 0, 1, newCurve); in Perform()
207 B.UpdateEdge ( edge, newCurve, newRevCurve, face, 0. ); in Perform()
209 B.UpdateEdge ( edge, newRevCurve, newCurve, face, 0. ); in Perform()
/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/examples/
H A Dexample06.cpp107 SISLCurve* c1 = newCurve(c1_number, // num. of control points in main()
115 SISLCurve* c2 = newCurve(c2_number, // num. of control points in main()
/dports/math/gismo/gismo-21.12.0/src/gsModeling/
H A DgsCurvatureSmoothing.h130 void reset(gsBSpline<T> * newCurve) in reset() argument
134 m_curve_smooth = newCurve; in reset()

123456