55 double xmin = std::numeric_limits<double>::quiet_NaN(),
56 double ymin = std::numeric_limits<double>::quiet_NaN(),
57 double zmin = std::numeric_limits<double>::quiet_NaN(),
58 double xmax = std::numeric_limits<double>::quiet_NaN(),
59 double ymax = std::numeric_limits<double>::quiet_NaN(),
60 double zmax = std::numeric_limits<double>::quiet_NaN(),
83 explicit QgsBox3D(
const QgsRectangle &rect,
double zMin = std::numeric_limits<double>::quiet_NaN(),
double zMax = std::numeric_limits<double>::quiet_NaN(),
bool normalize =
true );
87 QgsBox3D( SIP_PYOBJECT x
SIP_TYPEHINT( Optional[Union[
QgsPoint,
QgsVector3D,
QgsRectangle,
float]] ) = Py_None, SIP_PYOBJECT y
SIP_TYPEHINT( Optional[
QgsPoint,
QgsVector3D,
float] ) = Py_None, SIP_PYOBJECT z
SIP_TYPEHINT( Optional[Union[
bool,
float]] ) = Py_None, SIP_PYOBJECT x2
SIP_TYPEHINT( Optional[Union[
bool,
float]] ) = Py_None, SIP_PYOBJECT y2
SIP_TYPEHINT( Optional[
float] ) = Py_None, SIP_PYOBJECT z2
SIP_TYPEHINT( Optional[
float] ) = Py_None, SIP_PYOBJECT n
SIP_TYPEHINT( Optional[
bool] ) = Py_None ) [(
double x = 0.0,
double y = 0.0,
double z = 0.0,
double x2 = 0.0,
double y2 = 0.0,
double z2 = 0.0,
bool n = true )];
89 if ( sipCanConvertToType( a0, sipType_QgsRectangle, SIP_NOT_NONE ) && a4 == Py_None && a5 == Py_None && a6 == Py_None )
94 QgsRectangle *p =
reinterpret_cast<QgsRectangle *
>( sipConvertToType( a0, sipType_QgsRectangle, 0, SIP_NOT_NONE, &state, &sipIsErr ) );
97 double z1 = a1 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a1 );
98 double z2 = a2 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a2 );
99 bool n = a3 == Py_None ? true : PyObject_IsTrue( a3 );
101 sipCpp =
new QgsBox3D( *p, z1, z2, n );
103 sipReleaseType( p, sipType_QgsRectangle, state );
105 else if ( sipCanConvertToType( a0, sipType_QgsPoint, SIP_NOT_NONE ) && sipCanConvertToType( a1, sipType_QgsPoint, SIP_NOT_NONE ) && a3 == Py_None && a4 == Py_None && a5 == Py_None && a6 == Py_None )
110 QgsPoint *pt1 =
reinterpret_cast<QgsPoint *
>( sipConvertToType( a0, sipType_QgsPoint, 0, SIP_NOT_NONE, &state, &sipIsErr ) );
113 QgsPoint *pt2 =
reinterpret_cast<QgsPoint *
>( sipConvertToType( a1, sipType_QgsPoint, 0, SIP_NOT_NONE, &state, &sipIsErr ) );
116 bool n = a2 == Py_None ? true : PyObject_IsTrue( a2 );
117 sipCpp =
new QgsBox3D( *pt1, *pt2, n );
119 sipReleaseType( pt2, sipType_QgsPoint, state );
121 sipReleaseType( pt1, sipType_QgsPoint, state );
123 else if ( sipCanConvertToType( a0, sipType_QgsVector3D, SIP_NOT_NONE ) && sipCanConvertToType( a1, sipType_QgsVector3D, SIP_NOT_NONE ) && a3 == Py_None && a4 == Py_None && a5 == Py_None && a6 == Py_None )
128 QgsVector3D *corner1 =
reinterpret_cast<QgsVector3D *
>( sipConvertToType( a0, sipType_QgsVector3D, 0, SIP_NOT_NONE, &state, &sipIsErr ) );
131 QgsVector3D *corner2 =
reinterpret_cast<QgsVector3D *
>( sipConvertToType( a1, sipType_QgsVector3D, 0, SIP_NOT_NONE, &state, &sipIsErr ) );
134 bool n = a2 == Py_None ? true : PyObject_IsTrue( a2 );
135 sipCpp =
new QgsBox3D( *corner1, *corner2, n );
137 sipReleaseType( corner2, sipType_QgsVector3D, state );
139 sipReleaseType( corner1, sipType_QgsVector3D, state );
142 ( a0 == Py_None || PyFloat_AsDouble( a0 ) != -1.0 || !PyErr_Occurred() ) &&
143 ( a1 == Py_None || PyFloat_AsDouble( a1 ) != -1.0 || !PyErr_Occurred() ) &&
144 ( a2 == Py_None || PyFloat_AsDouble( a2 ) != -1.0 || !PyErr_Occurred() ) &&
145 ( a3 == Py_None || PyFloat_AsDouble( a3 ) != -1.0 || !PyErr_Occurred() ) &&
146 ( a4 == Py_None || PyFloat_AsDouble( a3 ) != -1.0 || !PyErr_Occurred() ) &&
147 ( a5 == Py_None || PyFloat_AsDouble( a3 ) != -1.0 || !PyErr_Occurred() ) &&
148 ( a6 == Py_None || PyFloat_AsDouble( a3 ) != -1.0 || !PyErr_Occurred() ) )
150 double x1 = a0 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a0 );
151 double y1 = a1 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a1 );
152 double z1 = a2 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a2 );
153 double x2 = a3 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a3 );
154 double y2 = a4 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a4 );
155 double z2 = a5 == Py_None ? std::numeric_limits<double>::quiet_NaN() : PyFloat_AsDouble( a5 );
156 bool n = a6 == Py_None ? true : PyObject_IsTrue( a6 );
157 sipCpp =
new QgsBox3D( x1, y1, z1, x2, y2, z2, n );
161 PyErr_SetString( PyExc_TypeError, u
"Invalid type in constructor arguments."_s.toUtf8().constData() );
173 void set(
double xMin,
double yMin,
double zMin,
double xMax,
double yMax,
double zMax,
bool normalize =
true )
175 mBounds2d.set( xMin, yMin, xMax, yMax,
false );
369 bool contains(
double x,
double y,
double z ) const
SIP_HOLDGIL;
383 void combineWith(
double x,
double y,
double z )
SIP_HOLDGIL;
423 void scale(
double scaleFactor,
double centerX,
double centerY,
double centerZ )
SIP_HOLDGIL;
429 void grow(
double delta );
459 QString toString(
int precision = 16 ) const
SIP_HOLDGIL;
493 SIP_PYOBJECT __repr__();
495 QString str = u
"<QgsBox3D(%1, %2, %3, %4, %5, %6)>"_s
496 .arg( sipCpp->xMinimum() )
497 .arg( sipCpp->yMinimum() )
498 .arg( sipCpp->zMinimum() )
499 .arg( sipCpp->xMaximum() )
500 .arg( sipCpp->yMaximum() )
501 .arg( sipCpp->zMaximum() );
502 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
510 double mZmin = std::numeric_limits<double>::quiet_NaN();
511 double mZmax = std::numeric_limits<double>::quiet_NaN();