Home
last modified time | relevance | path

Searched refs:minAngle (Results 1 – 25 of 166) sorted by relevance

1234567

/dports/games/openra/OpenRA-release-20200503/OpenRA.Mods.Common/Lint/
H A DCheckAngle.cs26 var minAngle = missile.MinimumLaunchAngle.Angle; in Run()
30 var testMaxAngle = minAngle != maxAngle; in Run()
31 CheckLaunchAngles(weaponInfo.Key, minAngle, testMaxAngle, maxAngle, emitError); in Run()
37 var minAngle = bullet.LaunchAngle[0].Angle; in Run()
38 var maxAngle = bullet.LaunchAngle.Length > 1 ? bullet.LaunchAngle[1].Angle : minAngle; in Run()
41 var testMaxAngle = minAngle != maxAngle; in Run()
42 CheckLaunchAngles(weaponInfo.Key, minAngle, testMaxAngle, maxAngle, emitError); in Run()
54 if (InvalidAngle(minAngle)) in CheckLaunchAngles()
59 if ((minAngle < 256) && (maxAngle < 256) && (minAngle > maxAngle)) in CheckLaunchAngles()
61 if ((minAngle > 768) && (maxAngle > 768) && (minAngle > maxAngle)) in CheckLaunchAngles()
[all …]
/dports/graphics/animorph/animorph-0.3/src/
H A DPoseTarget.cpp54 minAngle = (tmpRotation.getMinAngle() < minAngle) ? tmpRotation.getMinAngle() : minAngle; in load()
87minAngle = (tmpTranslation.getMinAngle() < minAngle) ? tmpTranslation.getMinAngle() : minAngle; in load()
203 if((*rotations_it).getMinAngle() != minAngle || (*rotations_it).getMaxAngle() != maxAngle) in calcNormalizations()
213 if((*rotations_it).getMinAngle() != minAngle || (*rotations_it).getMaxAngle() != maxAngle) in calcNormalizations()
223 if((*translations_it).getMinAngle() != minAngle || (*translations_it).getMaxAngle() != maxAngle) in calcNormalizations()
233 if((*translations_it).getMinAngle() != minAngle || (*translations_it).getMaxAngle() != maxAngle) in calcNormalizations()
/dports/comms/nanovna-saver/nanovna-saver-0.3.8/NanoVNASaver/Charts/
H A DPhase.py41 self.minAngle = 0
98 minAngle = self.minDisplayValue
101 minAngle = math.floor(np.min(self.unwrappedData))
104 minAngle = math.floor(np.min(self.unwrappedReference))
107 minAngle = -180
110 span = maxAngle - minAngle
113 self.minAngle = minAngle
120 angle = minAngle + span * i / tickcount
122 if angle != minAngle and angle != maxAngle:
141 qp.drawText(3, self.chartHeight + self.topMargin, str(minAngle) + "°")
/dports/math/glm/glm-0.9.9.8/test/gtx/
H A Dgtx_euler_angle.cpp381 value const minAngle(-glm::pi<value>()); in test() local
389 testEulerAngles.push_back(glm::vec3(minAngle, minMidAngle, minAngle)); in test()
392 testEulerAngles.push_back(glm::vec3(minAngle, maxMidAngle, minAngle)); in test()
406 testEulerAngles.push_back(glm::vec3(minAngle, 0.0f, minAngle)); in test()
407 testEulerAngles.push_back(glm::vec3(minAngle, 0.0f, maxAngle)); in test()
408 testEulerAngles.push_back(glm::vec3(maxAngle, maxAngle, minAngle)); in test()
440 value const minAngle(-glm::pi<value>()); in test() local
448 testEulerAngles.push_back(glm::vec3(minAngle, minMidAngle, minAngle)); in test()
451 testEulerAngles.push_back(glm::vec3(minAngle, maxMidAngle, minAngle)); in test()
465 testEulerAngles.push_back(glm::vec3(minAngle, 0.0f, minAngle)); in test()
[all …]
/dports/games/warzone2100/warzone2100/3rdparty/glm/test/gtx/
H A Dgtx_euler_angle.cpp381 value const minAngle(-glm::pi<value>()); in test() local
389 testEulerAngles.push_back(glm::vec3(minAngle, minMidAngle, minAngle)); in test()
392 testEulerAngles.push_back(glm::vec3(minAngle, maxMidAngle, minAngle)); in test()
406 testEulerAngles.push_back(glm::vec3(minAngle, 0.0f, minAngle)); in test()
407 testEulerAngles.push_back(glm::vec3(minAngle, 0.0f, maxAngle)); in test()
408 testEulerAngles.push_back(glm::vec3(maxAngle, maxAngle, minAngle)); in test()
440 value const minAngle(-glm::pi<value>()); in test() local
448 testEulerAngles.push_back(glm::vec3(minAngle, minMidAngle, minAngle)); in test()
451 testEulerAngles.push_back(glm::vec3(minAngle, maxMidAngle, minAngle)); in test()
465 testEulerAngles.push_back(glm::vec3(minAngle, 0.0f, minAngle)); in test()
[all …]
/dports/astro/gpsbabel14/gpsbabel-1.4.4/
H A Dbend.c38 static double minAngle; variable
64 minAngle = 0.0; in bend_init()
66 minAngle = strtod(minangleopt, NULL); in bend_init()
112 return ((abs(heading_diff - 0.0) < minAngle) in is_small_angle()
113 || (abs(heading_diff - 180.0) < minAngle) in is_small_angle()
114 || (abs(heading_diff - 360.0) < minAngle)); in is_small_angle()
/dports/astro/gpsbabel/gpsbabel-gpsbabel_1_7_0/
H A Dbend.cc45 minAngle = 0.0; in init()
47 minAngle = strtod(minangleopt, nullptr); in init()
89 return ((std::abs(heading_diff - 0.0) < minAngle) in is_small_angle()
90 || (std::abs(heading_diff - 180.0) < minAngle) in is_small_angle()
91 || (std::abs(heading_diff - 360.0) < minAngle)); in is_small_angle()
/dports/devel/bullet/bullet3-3.21/examples/RenderingExamples/
H A DCoordinateSystemDemo.cpp61 …al, const btVector3& axis, btScalar radiusA, btScalar radiusB, btScalar minAngle, btScalar maxAngl… in drawArc() argument
68 int nSteps = (int)btFabs((maxAngle - minAngle) / step); in drawArc()
70 btVector3 prev = center + radiusA * vx * btCos(minAngle) + radiusB * vy * btSin(minAngle); in drawArc()
77 btScalar angle = minAngle + (maxAngle - minAngle) * btScalar(i) / btScalar(nSteps); in drawArc()
/dports/devel/py-bullet3/bullet3-3.21/examples/RenderingExamples/
H A DCoordinateSystemDemo.cpp61 …al, const btVector3& axis, btScalar radiusA, btScalar radiusB, btScalar minAngle, btScalar maxAngl… in drawArc() argument
68 int nSteps = (int)btFabs((maxAngle - minAngle) / step); in drawArc()
70 btVector3 prev = center + radiusA * vx * btCos(minAngle) + radiusB * vy * btSin(minAngle); in drawArc()
77 btScalar angle = minAngle + (maxAngle - minAngle) * btScalar(i) / btScalar(nSteps); in drawArc()
/dports/biology/viennarna/ViennaRNA-2.4.18/src/ViennaRNA/plotting/RNApuzzler/includes/
H A DboundingWedge.inc28 * @param minAngle
36 double *minAngle,
44 double *minAngle,
94 *minAngle = nodeAngle;
192 if (pointAngle < *minAngle)
194 *minAngle = pointAngle;
225 if (pointAngle < *minAngle)
227 *minAngle = pointAngle;
244 getBoundingWedgeRec(root, child, nodeAngle, minAngle, maxAngle);
252 double *minAngle,
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/thebes/
H A DgfxFontUtils.h1257 if (minAngle >= 0.0) {
1258 return 1.0 + minAngle;
1281 if (minAngle >= kDefaultAngle) {
1308 if (minAngle >= targetAngle) {
1309 return minAngle - targetAngle;
1335 if (minAngle <= targetAngle) {
1338 if (minAngle < 0.0) {
1352 if (minAngle > targetAngle) {
1379 if (minAngle <= targetAngle) {
1382 if (minAngle < 0.0) {
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/thebes/
H A DgfxFontUtils.h1227 if (minAngle >= 0.0) {
1228 return 1.0 + minAngle;
1251 if (minAngle >= kDefaultAngle) {
1278 if (minAngle >= targetAngle) {
1279 return minAngle - targetAngle;
1305 if (minAngle <= targetAngle) {
1308 if (minAngle < 0.0) {
1322 if (minAngle > targetAngle) {
1349 if (minAngle <= targetAngle) {
1352 if (minAngle < 0.0) {
[all …]
/dports/www/firefox/firefox-99.0/gfx/thebes/
H A DgfxFontUtils.h1263 if (minAngle >= 0.0) {
1264 return 1.0 + minAngle;
1287 if (minAngle >= kDefaultAngle) {
1314 if (minAngle >= targetAngle) {
1315 return minAngle - targetAngle;
1341 if (minAngle <= targetAngle) {
1344 if (minAngle < 0.0) {
1358 if (minAngle > targetAngle) {
1385 if (minAngle <= targetAngle) {
1388 if (minAngle < 0.0) {
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/thebes/
H A DgfxFontUtils.h1257 if (minAngle >= 0.0) {
1258 return 1.0 + minAngle;
1281 if (minAngle >= kDefaultAngle) {
1308 if (minAngle >= targetAngle) {
1309 return minAngle - targetAngle;
1335 if (minAngle <= targetAngle) {
1338 if (minAngle < 0.0) {
1352 if (minAngle > targetAngle) {
1379 if (minAngle <= targetAngle) {
1382 if (minAngle < 0.0) {
[all …]
/dports/math/psurface/psurface-2.0.0-13-gb5b6825/
H A DCircularPatch.h106 ctype minAngle = 2*M_PI; in getMinInteriorAngle() local
109 if (currentMinAngle<minAngle) in getMinInteriorAngle()
110 minAngle = currentMinAngle; in getMinInteriorAngle()
113 return minAngle; in getMinInteriorAngle()
/dports/graphics/animorph/animorph-0.3/include/animorph/
H A DPoseTarget.h80 float minAngle; variable
100 minAngle(0.0f), in PoseTarget()
120 const float getMinAngle() const {return minAngle;} in getMinAngle()
/dports/science/gabedit/GabeditSrc251_300720/src/Utils/
H A DHydrogenBond.c42 static gdouble minAngle = 145.0; variable
61 minAngle = 145.0; in initHBonds()
78 fprintf(file,"%f\n",minAngle); in save_HBonds_properties()
106 n = fscanf(file,"%lf\n",&minAngle); in read_HBonds_properties()
144 minAngle = atof(tentry); in set_HBonds()
145 if(minAngle<1e-6)minAngle = 145.0; in set_HBonds()
150 if(maxAngle<=minAngle) maxAngle = minAngle + 70.0; in set_HBonds()
160 t = g_strdup_printf("%f",minAngle); in set_HBonds()
541 t = g_strdup_printf("%f",minAngle); in set_HBonds_dialog()
607 return minAngle; in getMinAngleHBonds()
/dports/games/hedgewars-server/hedgewars-src-1.0.0/hedgewars/
H A DuVariables.pas914 minAngle: 0;
942 minAngle: 0;
970 minAngle: 0;
996 minAngle: 0;
1026 minAngle: 0;
1052 minAngle: 0;
1080 minAngle: 0;
1107 minAngle: 0;
1137 minAngle: 0;
1165 minAngle: 0;
[all …]
/dports/games/hedgewars/hedgewars-src-1.0.0/hedgewars/
H A DuVariables.pas914 minAngle: 0;
942 minAngle: 0;
970 minAngle: 0;
996 minAngle: 0;
1026 minAngle: 0;
1052 minAngle: 0;
1080 minAngle: 0;
1107 minAngle: 0;
1137 minAngle: 0;
1165 minAngle: 0;
[all …]
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/quick/handlers/
H A Dqquickdraghandler.cpp200 qreal minAngle = 361; in handlePointerEventImpl() local
235 minAngle = qMin(angle, minAngle); in handlePointerEventImpl()
257 qreal angleDiff = maxAngle - minAngle; in handlePointerEventImpl()
260 … qCDebug(lcDragHandler) << "angle min" << minAngle << "max" << maxAngle << "range" << angleDiff; in handlePointerEventImpl()
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/quick/handlers/
H A Dqquickdraghandler.cpp200 qreal minAngle = 361; in handlePointerEventImpl() local
235 minAngle = qMin(angle, minAngle); in handlePointerEventImpl()
257 qreal angleDiff = maxAngle - minAngle; in handlePointerEventImpl()
260 … qCDebug(lcDragHandler) << "angle min" << minAngle << "max" << maxAngle << "range" << angleDiff; in handlePointerEventImpl()
/dports/math/openmesh/OpenMesh-8.1/src/OpenMesh/Core/Geometry/
H A DNormalConeT_impl.hh126 Scalar minAngle = std::min(-angle(), centerAngle - _cone.angle()); in merge() local
128 angle_ = (maxAngle - minAngle) * Scalar(0.5f); in merge()
131 Scalar axisAngle = Scalar(0.5f) * (minAngle + maxAngle); in merge()
/dports/math/vtk6/VTK-6.2.0/Rendering/Annotation/
H A DvtkPolarAxesActor.cxx375 double minAngle = this->MinimumAngle; in CalculateBounds() local
382 minAngle += 360.; in CalculateBounds()
385 else if ( minAngle > 180. ) in CalculateBounds()
388 minAngle -= 360.; in CalculateBounds()
393 double thetaMin = vtkMath::RadiansFromDegrees( minAngle ); in CalculateBounds()
403 if ( minAngle * maxAngle < 0. ) in CalculateBounds()
407 if ( minAngle < 180. && maxAngle > 180. ) in CalculateBounds()
419 else if ( minAngle < 180. && maxAngle > 180. ) in CalculateBounds()
435 if ( minAngle < -90. && maxAngle > -90. ) in CalculateBounds()
439 if ( minAngle < 90. && maxAngle > 90. ) in CalculateBounds()
[all …]
/dports/cad/calculix/CalculiX/libSNL/src/
H A DsnlSurface_pointLoop.cpp324 double minAngle = 0.0; in fitCylinder() local
374 if ( accumAngle < minAngle ) in fitCylinder()
376 minAngle = accumAngle; in fitCylinder()
388 double absAngle = maxAngle - minAngle; // minAngle must be below or equal to 0. in fitCylinder()
444 double minAngle = 0.0; in fitCone() local
554 if ( accumAngle < minAngle ) in fitCone()
556 minAngle = accumAngle; in fitCone()
654 absAngle = maxAngle - minAngle; // minAngle must be below or equal to 0. in fitCone()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Transform/include/
H A DitkBSplineTransformInitializer.hxx185 double minAngle[SpaceDimension]; in InitializeTransform() local
189 minAngle[d] = NumericTraits<double>::max(); in InitializeTransform()
208 if( theta < minAngle[d] ) in InitializeTransform()
222 minAngle[d] = theta; in InitializeTransform()

1234567