Home
last modified time | relevance | path

Searched refs:otherCurve (Results 1 – 6 of 6) sorted by relevance

/dports/graphics/blender/blender-2.91.0/release/scripts/addons/curve_tools/
H A Dintersections.py594 def __init__(self, activeCurve, otherCurve): argument
596 self.otherCurve = otherCurve
605 worldMatrix2 = self.otherCurve.curve.matrix_world
608 for spline2 in self.otherCurve.splines:
677 for iSplineO in range(len(self.otherCurve.splines)):
678 splineO = self.otherCurve.splines[iSplineO]
739 nrSplinesO = len(self.otherCurve.splines)
749 splineO = self.otherCurve.splines[iSplineO]
796 self.otherCurve.splines[iSplineO] = splineO
811 nrSplinesO = len(self.otherCurve.splines)
[all …]
H A Dsurfaces.py73 def __init__(self, activeCurve, otherCurve, name = "LoftedSurface"): argument
75 self.curveO = otherCurve
221 def __init__(self, activeCurve, otherCurve, name = "SweptSurface"): argument
223 self.curveO = otherCurve
/dports/graphics/qgis/qgis-3.22.3/src/core/geometry/
H A Dqgscompoundcurve.cpp45 const QgsCompoundCurve *otherCurve = qgsgeometry_cast< const QgsCompoundCurve * >( &other ); in equals() local
46 if ( !otherCurve ) in equals()
49 if ( mWkbType != otherCurve->mWkbType ) in equals()
52 if ( mCurves.size() != otherCurve->mCurves.size() ) in equals()
57 if ( *mCurves.at( i ) != *otherCurve->mCurves.at( i ) ) in equals()
73 const QgsCompoundCurve *otherCurve = qgsgeometry_cast<const QgsCompoundCurve *>( other ); in compareToSameClass() local
74 if ( !otherCurve ) in compareToSameClass()
79 while ( i < mCurves.size() && j < otherCurve->mCurves.size() ) in compareToSameClass()
82 const QgsAbstractGeometry *bGeom = otherCurve->mCurves[j]; in compareToSameClass()
95 if ( j < otherCurve->mCurves.size() ) in compareToSameClass()
H A Dqgscurve.cpp29 const QgsCurve *otherCurve = qgsgeometry_cast< const QgsCurve * >( &other ); in operator ==() local
30 if ( !otherCurve ) in operator ==()
33 return equals( *otherCurve ); in operator ==()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/geometry/
H A Dqgscurve.cpp28 const QgsCurve *otherCurve = qgsgeometry_cast< const QgsCurve * >( &other ); in operator ==() local
29 if ( !otherCurve ) in operator ==()
32 return equals( *otherCurve ); in operator ==()
H A Dqgscompoundcurve.cpp43 const QgsCompoundCurve *otherCurve = qgsgeometry_cast< const QgsCompoundCurve * >( &other ); in equals() local
44 if ( !otherCurve ) in equals()
47 if ( mWkbType != otherCurve->mWkbType ) in equals()
50 if ( mCurves.size() != otherCurve->mCurves.size() ) in equals()
55 if ( *mCurves.at( i ) != *otherCurve->mCurves.at( i ) ) in equals()