@since OOo 2.0 */ struct RealRectangle3D { /// minimum X coordinate. double X1; /// minimum Y coordinate. double Y1; /// minimum Z coordinate. double Z1; /** maximum X coordinate.
Must be greater than X1 for non-empty cubes.
. */ double X2; /** maximum Y coordinate.
Must be greater than Y1 for non-empty cubes.
*/ double Y2; /** maximum Z coordinate.
Must be greater than Z1 for non-empty cubes.
*/ double Z2; }; }; }; }; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
2026-04-04