Home
last modified time | relevance | path

Searched refs:startAng (Results 1 – 25 of 51) sorted by relevance

123

/dports/math/asymptote/asymptote-2.67/GUI/
H A DGuidesManager.py37 def __init__(self, center=None, radius=1, startAng=0, endAng=(2*np.pi), pen=None): argument
43 self.startAng = startAng
50 …self.radius, y - self.radius, 2 * self.radius, 2 * self.radius, ArcGuide.radTo16Deg(self.startAng),
51 -ArcGuide.radTo16Deg(self.endAng - self.startAng))
/dports/games/qudos/QuDos-0.40.1-src/src/mods/zaero/
H A Dz_spawn.c41 int startAng = 0; in SpawnZ() local
52 startAng = rand() % 360; in SpawnZ()
56 for (ang = startAng; ang < startAng + 360; ang += 15) in SpawnZ()
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/sping/PDF/
H A Dpdfgeom.py13 def bezierArc(x1, y1, x2, y2, startAng=0, extent=90): argument
31 arcList = [startAng]
54 theta0 = (startAng + i * fragAngle) * pi / 180.
55 theta1 = (startAng + (i + 1) * fragAngle) * pi / 180.
H A Dpdfgen.py331 def arc(self, x1, y1, x2, y2, startAng=0, extent=90): argument
344 pointList = pdfgeom.bezierArc(x1, y1, x2, y2, startAng, extent)
369 def wedge(self, x1, y1, x2, y2, startAng, extent, stroke=1, fill=0): argument
375 pointList = pdfgeom.bezierArc(x1, y1, x2, y2, startAng, extent)
820 def arc(self, x1, y1, x2, y2, startAng=0, extent=90): argument
830 pointList = pdfgeom.bezierArc(x1, y1, x2, y2, startAng, extent)
836 def arcTo(self, x1, y1, x2, y2, startAng=0, extent=90): argument
839 pointList = pdfgeom.bezierArc(x1, y1, x2, y2, startAng, extent)
/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/pdfgen/
H A Dpdfgeom.py15 def bezierArc(x1,y1, x2,y2, startAng=0, extent=90): argument
33 arcList = [startAng]
56 theta0 = (startAng + i*fragAngle) * pi / 180.
57 theta1 = (startAng + (i+1)*fragAngle) *pi / 180.
H A Dpathobject.py55 def arc(self, x1,y1, x2,y2, startAng=0, extent=90): argument
65 self._curves(pdfgeom.bezierArc(x1,y1, x2,y2, startAng, extent))
67 def arcTo(self, x1,y1, x2,y2, startAng=0, extent=90): argument
70 self._curves(pdfgeom.bezierArc(x1,y1, x2,y2, startAng, extent),'lineTo')
/dports/graphics/piddle/piddle-1.0.15/src/piddle/
H A Dpdfgeom.py12 def bezierArc(x1,y1, x2,y2, startAng=0, extent=90): argument
30 arcList = [startAng]
53 theta0 = (startAng + i*fragAngle) * pi / 180.
54 theta1 = (startAng + (i+1)*fragAngle) *pi / 180.
H A DpiddlePS.py668 def drawArc(self, x1,y1, x2,y2, startAng=0, extent=360, edgeColor=None, argument
671 starting at startAng degrees and covering extent degrees. Angles \
678 codeline = self._genArcCode(x1, y1, x2, y2, startAng, extent)
693 self.code.append('%s %s neg moveto' % (cx+rx*math.cos(-startAng),
694 cy+ry*math.sin(-startAng)))
697 def _genArcCode(self, x1, y1, x2, y2, startAng, extent): argument
713 data = (x,y, xScale, yScale, startAng, startAng+extent, arc)
H A DpiddleAI.py294 def bezierArc(self, x1,y1, x2,y2, startAng=0, extent=90): argument
310 arcList = [startAng]
328 theta0 = (startAng + i*fragAngle) * pi / 180.
329 theta1 = (startAng + (i+1)*fragAngle) *pi / 180.
343 def drawArc(self, x1, y1, x2, y2, startAng=0, extent=90, edgeColor=None, argument
357 pointlist = self.bezierArc(x1, y1, x2, y2, startAng, extent)
H A DpiddleVCR.py198 def drawArc(self, x1,y1, x2,y2, startAng=0, extent=360, argument
201 starting at startAng degrees and covering extent degrees. Angles \
205 self._recordfunc("drawArc", x1,y1,x2,y2,startAng,extent,edgeColor,edgeWidth,fillColor)
H A Dpdfgen.py332 def arc(self, x1,y1, x2,y2, startAng=0, extent=90): argument
345 pointList = pdfgeom.bezierArc(x1,y1, x2,y2, startAng, extent)
372 def wedge(self, x1,y1, x2,y2, startAng, extent, stroke=1, fill=0): argument
378 pointList = pdfgeom.bezierArc(x1,y1, x2,y2, startAng, extent)
828 def arc(self, x1,y1, x2,y2, startAng=0, extent=90): argument
838 pointList = pdfgeom.bezierArc(x1,y1, x2,y2, startAng, extent)
844 def arcTo(self, x1,y1, x2,y2, startAng=0, extent=90): argument
847 pointList = pdfgeom.bezierArc(x1,y1, x2,y2, startAng, extent)
H A DpiddleQD.py437 def drawArc(self, x1,y1, x2,y2, startAng=0, extent=360, argument
440 starting at startAng degrees and covering extent degrees (counterclockwise). \
448 Qd.EraseArc( (x1,y1, x2,y2), 90-startAng, -extent )
450 Qd.EraseOval( (x1,y1, x2,y2), 90-startAng, -extent )
466 Qd.FrameArc( (x1,y1, x2+1,y2+1), 90-startAng, -extent )
/dports/lang/seed7/seed7/src/
H A Ddrw_x11.c649 int startAng, sweepAng; in drwArc() local
659 startAng, sweepAng); in drwArc()
674 int startAng, sweepAng; in drwPArc() local
685 startAng, sweepAng); in drwPArc()
700 int startAng, sweepAng; in drwFArcChord() local
711 startAng, sweepAng); in drwFArcChord()
715 startAng, sweepAng); in drwFArcChord()
734 int startAng, sweepAng; in drwPFArcChord() local
746 startAng, sweepAng); in drwPFArcChord()
769 int startAng, sweepAng; in drwFArcPieSlice() local
[all …]
/dports/graphics/geos/geos-3.9.1/include/geos/util/
H A DGeometricShapeFactory.h116 std::unique_ptr<geom::LineString> createArc(double startAng, double angExtent);
129 std::unique_ptr<geom::Polygon> createArcPolygon(double startAng, double angExt);
/dports/graphics/geos/geos-3.9.1/src/util/
H A DGeometricShapeFactory.cpp153 GeometricShapeFactory::createArc(double startAng, double angExtent) in createArc() argument
172 double ang = startAng + i * angInc; in createArc()
183 GeometricShapeFactory::createArcPolygon(double startAng, double angExtent) in createArcPolygon() argument
203 double ang = startAng + i * angInc; in createArcPolygon()
/dports/games/dhewm3/dhewm3-1.5.1/neo/d3xp/physics/
H A DPhysics_Parametric.cpp208 idAngles angularStartValue, angularBaseSpeed, angularSpeed, startAng, endAng; in idPhysics_Parametric_RestorePState() local
250 savefile->ReadAngles( startAng ); in idPhysics_Parametric_RestorePState()
253 state.angularInterpolation.Init( startTime, accelTime, decelTime, duration, startAng, endAng ); in idPhysics_Parametric_RestorePState()
388 …( int time, int accelTime, int decelTime, int duration, const idAngles &startAng, const idAngles &… in SetAngularInterpolation() argument
390 current.angularInterpolation.Init( time, accelTime, decelTime, duration, startAng, endAng ); in SetAngularInterpolation()
391 current.localAngles = startAng; in SetAngularInterpolation()
1107 idAngles angularStartValue, angularSpeed, angularBaseSpeed, startAng, endAng; in ReadFromSnapshot() local
1168 startAng[0] = msg.ReadDeltaFloat( 0.0f ); in ReadFromSnapshot()
1169 startAng[1] = msg.ReadDeltaFloat( 0.0f ); in ReadFromSnapshot()
1170 startAng[2] = msg.ReadDeltaFloat( 0.0f ); in ReadFromSnapshot()
[all …]
/dports/games/dhewm3/dhewm3-1.5.1/neo/game/physics/
H A DPhysics_Parametric.cpp208 idAngles angularStartValue, angularBaseSpeed, angularSpeed, startAng, endAng; in idPhysics_Parametric_RestorePState() local
250 savefile->ReadAngles( startAng ); in idPhysics_Parametric_RestorePState()
253 state.angularInterpolation.Init( startTime, accelTime, decelTime, duration, startAng, endAng ); in idPhysics_Parametric_RestorePState()
388 …( int time, int accelTime, int decelTime, int duration, const idAngles &startAng, const idAngles &… in SetAngularInterpolation() argument
390 current.angularInterpolation.Init( time, accelTime, decelTime, duration, startAng, endAng ); in SetAngularInterpolation()
391 current.localAngles = startAng; in SetAngularInterpolation()
1107 idAngles angularStartValue, angularSpeed, angularBaseSpeed, startAng, endAng; in ReadFromSnapshot() local
1168 startAng[0] = msg.ReadDeltaFloat( 0.0f ); in ReadFromSnapshot()
1169 startAng[1] = msg.ReadDeltaFloat( 0.0f ); in ReadFromSnapshot()
1170 startAng[2] = msg.ReadDeltaFloat( 0.0f ); in ReadFromSnapshot()
[all …]
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/sping/PS/
H A DpidPS.py682 def drawArc(self, x1, y1, x2, y2, startAng=0, extent=360, edgeColor=None, edgeWidth=None, argument
685 starting at startAng degrees and covering extent degrees. Angles \
693 codeline = self._genArcCode(x1, y1, x2, y2, startAng, extent)
708 self.code.append('%s %s neg moveto' % (cx + rx * math.cos(-startAng),
709 cy + ry * math.sin(-startAng)))
712 def _genArcCode(self, x1, y1, x2, y2, startAng, extent): argument
728 data = (x, y, xScale, yScale, startAng, startAng + extent, arc)
/dports/net-im/coccinella/Coccinella-0.96.20Src/whiteboard/
H A DCanvasDraw.tcl429 set startAng [$wcan itemcget $itemid -start]
432 if {$startAng > 180} {
433 set startAng [expr {$startAng - 360}]
436 set xstart [expr {$cx + $r * cos($kGrad2Rad * $startAng)}]
437 set ystart [expr {$cy - $r * sin($kGrad2Rad * $startAng)}]
442 set moveArr(arcStart) $startAng
444 set moveArr(arcFin) [expr {$startAng + $extentAng}]
451 -start $startAng -extent $extentAng]
475 set startAng [$wcan itemcget $itemid -start]
2265 set deltaAng [expr {$rotDrag(startAng) - $newAng}]
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/util/
H A DGeometricShapeFactory.java311 double startAng, in createArc() argument
329 double ang = startAng + i * angInc; in createArc()
347 public Polygon createArcPolygon(double startAng, double angExtent) { in createArcPolygon() argument
367 double ang = startAng + angInc * i; in createArcPolygon()
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/sping/
H A Dpid.py315 def arcPoints(self, x1, y1, x2, y2, startAng=0, extent=360): argument
333 angle = startAng
482 def drawArc(self, x1, y1, x2, y2, startAng=0, extent=360, edgeColor=None, edgeWidth=None, argument
485 starting at startAng degrees and covering extent degrees. Angles \
490 pointlist = self.arcPoints(x1, y1, x2, y2, startAng, extent)
/dports/devel/upp/upp/bazaar/plugin/gdal/ogr/ogrsf_frmts/dwg/
H A Dogrdwg_hatch.cpp194 double dfStartAngle = poCircArc->startAng() * 180 / PI; in DWGCollectBoundaryLoop()
226 dfStartAng = poArc->startAng()*180/PI; in DWGCollectBoundaryLoop()
/dports/graphics/py-gdal/gdal-3.3.3/ogr/ogrsf_frmts/dwg/
H A Dogrdwg_hatch.cpp182 double dfStartAngle = poCircArc->startAng() * 180 / M_PI; in DWGCollectBoundaryLoop()
214 dfStartAng = poArc->startAng()*180/M_PI; in DWGCollectBoundaryLoop()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/ogr/ogrsf_frmts/dwg/
H A Dogrdwg_hatch.cpp182 double dfStartAngle = poCircArc->startAng() * 180 / M_PI;
214 dfStartAng = poArc->startAng()*180/M_PI;
/dports/graphics/gdal/gdal-3.3.3/ogr/ogrsf_frmts/dwg/
H A Dogrdwg_hatch.cpp182 double dfStartAngle = poCircArc->startAng() * 180 / M_PI; in DWGCollectBoundaryLoop()
214 dfStartAng = poArc->startAng()*180/M_PI; in DWGCollectBoundaryLoop()

123