Home
last modified time | relevance | path

Searched refs:angleLength (Results 1 – 25 of 31) sorted by relevance

12

/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/Renderer/
H A DCircle.cpp37 …adius, const size_t segments, const bool filled, const float startAngle, const float angleLength) : in Circle() argument
41 init2D(radius, segments, startAngle, angleLength); in Circle()
53 … const bool filled, const Math::Axis::Type axis, const float startAngle, const float angleLength) : in Circle() argument
57 assert(angleLength > 0.0); in Circle()
58 init3D(radius, segments, axis, startAngle, angleLength); in Circle()
73 …nit2D(const float radius, const size_t segments, const float startAngle, const float angleLength) { in init2D() argument
76 Vec2f::List positions = circle2D(radius, startAngle, angleLength, segments); in init2D()
83 …st size_t segments, const Math::Axis::Type axis, const float startAngle, const float angleLength) { in init3D() argument
86 Vec3f::List positions = circle2D(radius, axis, startAngle, angleLength, segments); in init3D()
H A DCircle.h37 Circle(float radius, size_t segments, bool filled, float startAngle, float angleLength);
39 … radius, size_t segments, bool filled, Math::Axis::Type axis, float startAngle, float angleLength);
45 … init3D(float radius, size_t segments, Math::Axis::Type axis, float startAngle, float angleLength);
46 void init2D(float radius, size_t segments, float startAngle, float angleLength);
H A DRenderUtils.cpp75 …Vec2f::List circle2D(const float radius, const float startAngle, const float angleLength, const si… in circle2D() argument
78 if (angleLength == 0.0f) in circle2D()
83 const float d = angleLength / segments; in circle2D()
94 …dius, const Math::Axis::Type axis, const float startAngle, const float angleLength, const size_t s… in circle2D() argument
97 if (angleLength == 0.0f) in circle2D()
115 const float d = angleLength / segments; in circle2D()
128 float angle1, angle2, angleLength; in startAngleAndLength() local
133angleLength = std::min(angleBetween(startAxis, endAxis, Vec3f::PosX), angleBetween(endAxis, startA… in startAngleAndLength()
138angleLength = std::min(angleBetween(startAxis, endAxis, Vec3f::PosY), angleBetween(endAxis, startA… in startAngleAndLength()
143angleLength = std::min(angleBetween(startAxis, endAxis, Vec3f::PosZ), angleBetween(endAxis, startA… in startAngleAndLength()
[all …]
H A DRenderUtils.h59 Vec2f::List circle2D(float radius, float startAngle, float angleLength, size_t segments);
60 … circle2D(float radius, Math::Axis::Type axis, float startAngle, float angleLength, size_t segment…
H A DRenderService.h87 … normal, size_t segments, float radius, float startAngle = 0.0f, float angleLength = Math::Cf::two…
90 … normal, size_t segments, float radius, float startAngle = 0.0f, float angleLength = Math::Cf::two…
H A DRenderService.cpp203 …rmal, const size_t segments, const float radius, const float startAngle, const float angleLength) { in renderCircle() argument
204 …const Vec3f::List positions = circle2D(radius, normal, startAngle, angleLength, segments) + positi… in renderCircle()
213 …rmal, const size_t segments, const float radius, const float startAngle, const float angleLength) { in renderFilledCircle() argument
214 …const Vec3f::List positions = circle2D(radius, normal, startAngle, angleLength, segments) + positi… in renderFilledCircle()
/dports/cad/librecad/LibreCAD-2.2.0-rc2/librecad/src/actions/
H A Drs_actiondrawarctangential.h81 angleLength= r; in setAngle()
85 return angleLength; in getAngle()
110 double angleLength;
H A Drs_actiondrawarctangential.cpp125 suc = arc.createFrom2PDirectionAngle(startPoint, *point, direction, angleLength); in preparePreview()
/dports/print/scribus-devel/scribus-1.5.7/scribus/plugins/import/wmf/
H A Dwmfimport.cpp307 angleLength = (int)(aLength * 180.0 / 3.14166); in pointsToAngle()
308 if ( angleLength < 0 ) angleLength = 360.0 + angleLength; in pointsToAngle()
1008 double angleStart, angleLength; in arc() local
1015 …- xCenter, yCenter - params[2], params[1] - xCenter, yCenter - params[0], angleStart, angleLength); in arc()
1017 painterPath.arcTo(x, y, xWidth, yHeight, angleStart, angleLength); in arc()
1043 double angleStart, angleLength; in chord() local
1050 …- xCenter, yCenter - params[2], params[1] - xCenter, yCenter - params[0], angleStart, angleLength); in chord()
1053 painterPath.arcTo (x, y, xWidth, yHeight, angleStart, angleLength); in chord()
1080 double angleStart, angleLength; in pie() local
1087 …- xCenter, yCenter - params[2], params[1] - xCenter, yCenter - params[0], angleStart, angleLength); in pie()
[all …]
H A Dwmfimport.h108 … double xStart, double yStart, double xEnd, double yEnd, double& angleStart, double& angleLength );
/dports/editors/calligra/calligra-3.2.1/libs/vectorimage/libwmf/
H A DWmfWriter.cpp463 double angleStart, angleLength; in angleToxy() local
466 angleLength = ((double)alen * 3.14166) / 2880; in angleToxy()
470 xEnd = (int)(cos(angleLength) * 50); in angleToxy()
471 yEnd = -(int)(sin(angleLength) * 50); in angleToxy()
H A Dqwmf.cc1111 …nMetaFile::xyToAngle(int xStart, int yStart, int xEnd, int yEnd, int& angleStart, int& angleLength) in xyToAngle() argument
1119 angleLength = (int)(aLength * 2880 / 3.14166); in xyToAngle()
1120 if (angleLength < 0) angleLength = 5760 + angleLength; in xyToAngle()
H A DWmfParser.cpp1619 …WmfParser::xyToAngle(int xStart, int yStart, int xEnd, int yEnd, int& angleStart, int& angleLength) in xyToAngle() argument
1627 angleLength = (int)((aLength * 2880) / 3.14166); in xyToAngle()
1628 if (angleLength < 0) angleLength = 5760 + angleLength; in xyToAngle()
/dports/cad/librecad/LibreCAD-2.2.0-rc2/librecad/src/lib/engine/
H A Drs_arc.cpp169 double direction1, double angleLength) { in createFrom2PDirectionAngle() argument
170 …if (angleLength <= RS_TOLERANCE_ANGLE || angleLength > 2. * M_PI - RS_TOLERANCE_ANGLE) return fals… in createFrom2PDirectionAngle()
172 double const halfA = 0.5 * angleLength; in createFrom2PDirectionAngle()
178 l1.rotate(startPoint, -angleLength); in createFrom2PDirectionAngle()
201 data.angle2 = RS_Math::correctAngle(data.angle1 -angleLength); in createFrom2PDirectionAngle()
204 data.angle2 = RS_Math::correctAngle(data.angle1 +angleLength); in createFrom2PDirectionAngle()
H A Drs_arc.h191 double direction1, double angleLength);
/dports/deskutils/kmail/kmail-21.12.3/ktnef/src/
H A Dqwmf.cpp1096 …nMetaFile::xyToAngle(int xStart, int yStart, int xEnd, int yEnd, int &angleStart, int &angleLength) in xyToAngle() argument
1105 angleLength = (int)(aLength * 2880 / 3.14166); in xyToAngle()
1106 if (angleLength < 0) { in xyToAngle()
1107 angleLength = 5760 + angleLength; in xyToAngle()
/dports/astro/marble/marble-21.12.3/src/plugins/render/measure/
H A DMeasureToolPlugin.cpp309 qreal angleLength = qAbs(m_latLonAltBox.north() - m_latLonAltBox.south()) / 20; in drawSegments() local
313 ring << currentCoordinates.moveByBearing( iterBearing, angleLength ); in drawSegments()
317 ring << currentCoordinates.moveByBearing( currentBearing, angleLength ); in drawSegments()
/dports/cad/ktechlab/ktechlab-0.50.0/src/
H A Dcanvasitems.h243 int angleLength() const { return a2; } in angleLength() function
H A Dcanvasitems.cpp180 && e1->angleLength()>=360*16 && e2->angleLength()>=360*16 in collision_double_dispatch()
/dports/security/openconnect-gui/openconnect-gui-v1.5.3/external/src/qt-solutions-master/qtpropertybrowser/examples/canvas_variant/
H A Dqtcanvas.h700 int angleLength() const in angleLength() function
/dports/security/openconnect-gui/openconnect-gui-v1.5.3/external/src/qt-solutions-master/qtpropertybrowser/examples/canvas_typed/
H A Dqtcanvas.h700 int angleLength() const in angleLength() function
/dports/converters/wkhtmltopdf/qt-5db36ec/src/qt3support/canvas/
H A Dq3canvas.h704 int angleLength() const in angleLength() function
/dports/devel/nextpnr/nextpnr-48cd407/3rdparty/QtPropertyBrowser/examples/canvas_typed/
H A Dqtcanvas.h699 int angleLength() const in angleLength() function
/dports/devel/nextpnr/nextpnr-48cd407/3rdparty/QtPropertyBrowser/examples/canvas_variant/
H A Dqtcanvas.h699 int angleLength() const in angleLength() function
/dports/devel/qmake/qt-x11-free-3.3.8/src/canvas/
H A Dqcanvas.h728 int angleLength() const in angleLength() function

12