Standard object for storing any 3D lightweight object.
Do not inherit from this class.
Definition at line 2037 of file lightweight_geom_data.h.
#include <mrpt/math/lightweight_geom_data.h>
Public Member Functions | |
TObject3D (const TPoint3D &p) | |
Constructor from point. More... | |
TObject3D (const TSegment3D &s) | |
Constructor from segment. More... | |
TObject3D (const TLine3D &r) | |
Constructor from line. More... | |
TObject3D (const TPolygon3D &p) | |
Constructor from polygon. More... | |
TObject3D (const TPlane &p) | |
Constructor from plane. More... | |
TObject3D () | |
Empty constructor. More... | |
~TObject3D () | |
Destructor. More... | |
bool | isPoint () const |
Checks whether content is a point. More... | |
bool | isSegment () const |
Checks whether content is a segment. More... | |
bool | isLine () const |
Checks whether content is a line. More... | |
bool | isPolygon () const |
Checks whether content is a polygon. More... | |
bool | isPlane () const |
Checks whether content is a plane. More... | |
unsigned char | getType () const |
Gets object type. More... | |
bool | getPoint (TPoint3D &p) const |
Gets the content as a point, returning false if the type is not adequate. More... | |
bool | getSegment (TSegment3D &s) const |
Gets the content as a segment, returning false if the type is not adequate. More... | |
bool | getLine (TLine3D &r) const |
Gets the content as a line, returning false if the type is not adequate. More... | |
bool | getPolygon (TPolygon3D &p) const |
Gets the content as a polygon, returning false if the type is not adequate. More... | |
bool | getPlane (TPlane &p) const |
Gets the content as a plane, returning false if the type is not adequate. More... | |
void | operator= (const TObject3D &obj) |
Assigns another object, creating a new pointer if needed. More... | |
void | operator= (const TPoint3D &p) |
Assigns a point to this object. More... | |
void | operator= (const TSegment3D &s) |
Assigns a segment to this object. More... | |
void | operator= (const TLine3D &l) |
Assigns a line to this object. More... | |
void | operator= (const TPolygon3D &p) |
Assigns a polygon to this object. More... | |
void | operator= (const TPlane &p) |
Assigns a plane to this object. More... | |
void | generate2DObject (TObject2D &obj) const |
Projects into 2D space. More... | |
TObject3D (const TObject3D &obj) | |
Constructs from another object. More... | |
Static Public Member Functions | |
static void | getPoints (const std::vector< TObject3D > &objs, std::vector< TPoint3D > &pnts) |
Static method to retrieve every point included in a vector of objects. More... | |
static void | getSegments (const std::vector< TObject3D > &objs, std::vector< TSegment3D > &sgms) |
Static method to retrieve every segment included in a vector of objects. More... | |
static void | getLines (const std::vector< TObject3D > &objs, std::vector< TLine3D > &lins) |
Static method to retrieve every line included in a vector of objects. More... | |
static void | getPlanes (const std::vector< TObject3D > &objs, std::vector< TPlane > &plns) |
Static method to retrieve every plane included in a vector of objects. More... | |
static void | getPolygons (const std::vector< TObject3D > &objs, std::vector< TPolygon3D > &polys) |
Static method to retrieve every polygon included in a vector of objects. More... | |
static void | getPoints (const std::vector< TObject3D > &objs, std::vector< TPoint3D > &pnts, std::vector< TObject3D > &remainder) |
Static method to retrieve every point included in a vector of objects, returning the remaining objects in another argument. More... | |
static void | getSegments (const std::vector< TObject3D > &objs, std::vector< TSegment3D > &sgms, std::vector< TObject3D > &remainder) |
Static method to retrieve every segment included in a vector of objects, returning the remaining objects in another argument. More... | |
static void | getLines (const std::vector< TObject3D > &objs, std::vector< TLine3D > &lins, std::vector< TObject3D > &remainder) |
Static method to retrieve every line included in a vector of objects, returning the remaining objects in another argument. More... | |
static void | getPlanes (const std::vector< TObject3D > &objs, std::vector< TPlane > &plns, std::vector< TObject3D > &remainder) |
Static method to retrieve every plane included in a vector of objects, returning the remaining objects in another argument. More... | |
static void | getPolygons (const std::vector< TObject3D > &objs, std::vector< TPolygon3D > &polys, std::vector< TObject3D > &remainder) |
Static method to retrieve every polygon included in a vector of objects, returning the remaining objects in another argument. More... | |
Private Member Functions | |
void | destroy () |
Destroys the object and releases the pointer, if any. More... | |
Private Attributes | |
unsigned char | type |
Object type identifier. More... | |
struct { | |
TPoint3D point | |
TSegment3D segment | |
TLine3D line | |
TPolygon3D * polygon | |
TPlane plane | |
} | data |
Union containing pointer to actual data. More... | |
|
inline |
Constructor from point.
Definition at line 2064 of file lightweight_geom_data.h.
|
inline |
Constructor from segment.
Definition at line 2070 of file lightweight_geom_data.h.
|
inline |
Constructor from line.
Definition at line 2076 of file lightweight_geom_data.h.
|
inline |
Constructor from polygon.
Definition at line 2082 of file lightweight_geom_data.h.
References mrpt::math::TPolygon3D.
|
inline |
Constructor from plane.
Definition at line 2088 of file lightweight_geom_data.h.
|
inline |
Empty constructor.
Definition at line 2094 of file lightweight_geom_data.h.
|
inline |
Destructor.
Definition at line 2098 of file lightweight_geom_data.h.
|
inline |
Constructs from another object.
Definition at line 2278 of file lightweight_geom_data.h.
|
inlineprivate |
Destroys the object and releases the pointer, if any.
Definition at line 2056 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_POLYGON, and mrpt::math::GEOMETRIC_TYPE_UNDEFINED.
|
inline |
Projects into 2D space.
std::logic_error | if the 3D object loses its properties when projecting into 2D space (for example, it's a plane or a vertical line). |
Definition at line 2254 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_LINE, mrpt::math::GEOMETRIC_TYPE_PLANE, mrpt::math::GEOMETRIC_TYPE_POINT, mrpt::math::GEOMETRIC_TYPE_POLYGON, and mrpt::math::GEOMETRIC_TYPE_SEGMENT.
|
inline |
Gets the content as a line, returning false if the type is not adequate.
Definition at line 2158 of file lightweight_geom_data.h.
|
static |
Static method to retrieve every line included in a vector of objects.
|
static |
Static method to retrieve every line included in a vector of objects, returning the remaining objects in another argument.
|
inline |
Gets the content as a plane, returning false if the type is not adequate.
Definition at line 2176 of file lightweight_geom_data.h.
|
static |
Static method to retrieve every plane included in a vector of objects.
|
static |
Static method to retrieve every plane included in a vector of objects, returning the remaining objects in another argument.
|
inline |
Gets the content as a point, returning false if the type is not adequate.
Definition at line 2140 of file lightweight_geom_data.h.
|
static |
Static method to retrieve every point included in a vector of objects.
|
static |
Static method to retrieve every point included in a vector of objects, returning the remaining objects in another argument.
|
inline |
Gets the content as a polygon, returning false if the type is not adequate.
Definition at line 2167 of file lightweight_geom_data.h.
|
static |
Static method to retrieve every polygon included in a vector of objects.
|
static |
Static method to retrieve every polygon included in a vector of objects, returning the remaining objects in another argument.
|
inline |
Gets the content as a segment, returning false if the type is not adequate.
Definition at line 2149 of file lightweight_geom_data.h.
|
static |
Static method to retrieve every segment included in a vector of objects.
|
static |
Static method to retrieve every segment included in a vector of objects, returning the remaining objects in another argument.
|
inline |
Gets object type.
Definition at line 2134 of file lightweight_geom_data.h.
|
inline |
Checks whether content is a line.
Definition at line 2116 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_LINE.
|
inline |
Checks whether content is a plane.
Definition at line 2128 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_PLANE.
|
inline |
Checks whether content is a point.
Definition at line 2104 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_POINT.
|
inline |
Checks whether content is a polygon.
Definition at line 2122 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_POLYGON.
|
inline |
Checks whether content is a segment.
Definition at line 2110 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_SEGMENT.
|
inline |
Assigns another object, creating a new pointer if needed.
Definition at line 2185 of file lightweight_geom_data.h.
References data, mrpt::math::GEOMETRIC_TYPE_LINE, mrpt::math::GEOMETRIC_TYPE_PLANE, mrpt::math::GEOMETRIC_TYPE_POINT, mrpt::math::GEOMETRIC_TYPE_POLYGON, mrpt::math::GEOMETRIC_TYPE_SEGMENT, mrpt::math::GEOMETRIC_TYPE_UNDEFINED, line, plane, point, polygon, segment, THROW_EXCEPTION, mrpt::math::TPolygon3D, and type.
|
inline |
Assigns a point to this object.
Definition at line 2213 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_POINT.
|
inline |
Assigns a segment to this object.
Definition at line 2221 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_SEGMENT.
|
inline |
Assigns a line to this object.
Definition at line 2229 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_LINE.
|
inline |
Assigns a polygon to this object.
Definition at line 2237 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_POLYGON, and mrpt::math::TPolygon3D.
|
inline |
Assigns a plane to this object.
Definition at line 2245 of file lightweight_geom_data.h.
References mrpt::math::GEOMETRIC_TYPE_PLANE.
struct { ... } mrpt::math::TObject3D::data |
Union containing pointer to actual data.
Referenced by operator=().
TLine3D mrpt::math::TObject3D::line |
Definition at line 2049 of file lightweight_geom_data.h.
Referenced by operator=().
TPlane mrpt::math::TObject3D::plane |
Definition at line 2051 of file lightweight_geom_data.h.
Referenced by operator=().
TPoint3D mrpt::math::TObject3D::point |
Definition at line 2047 of file lightweight_geom_data.h.
Referenced by operator=().
TPolygon3D* mrpt::math::TObject3D::polygon |
Definition at line 2050 of file lightweight_geom_data.h.
Referenced by operator=().
TSegment3D mrpt::math::TObject3D::segment |
Definition at line 2048 of file lightweight_geom_data.h.
Referenced by operator=().
|
private |
Object type identifier.
Definition at line 2042 of file lightweight_geom_data.h.
Referenced by operator=().
Page generated by Doxygen 1.8.14 for MRPT 1.0.2 SVN: at lun oct 28 00:52:41 CET 2019 | Hosted on: |