![]() |
KiCad PCB EDA Suite
|
#include <shape_compound.h>
Public Member Functions | |
SHAPE_COMPOUND () | |
SHAPE_COMPOUND (const std::vector< SHAPE * > &aShapes) | |
SHAPE_COMPOUND (const SHAPE_COMPOUND &aOther) | |
~SHAPE_COMPOUND () | |
SHAPE_COMPOUND * | Clone () const override |
Return a dynamically allocated copy of the shape. More... | |
const std::string | Format () const override |
bool | Collide (const SEG &aSeg, int aClearance=0, int *aActual=nullptr, VECTOR2I *aLocation=nullptr) const override |
Check if the boundary of shape (this) lies closer to the segment aSeg than aClearance, indicating a collision. More... | |
bool | Collide (const SHAPE *aShape, int aClearance, VECTOR2I *aMTV) const override |
Check if the boundary of shape (this) lies closer to the shape aShape than aClearance, indicating a collision. More... | |
bool | Collide (const SHAPE *aShape, int aClearance=0, int *aActual=nullptr, VECTOR2I *aLocation=nullptr) const override |
const std::vector< SHAPE * > & | Shapes () const |
const BOX2I | BBox (int aClearance=0) const override |
Compute a bounding box of the shape, with a margin of aClearance a collision. More... | |
int | Distance (const SEG &aSeg) const |
void | Move (const VECTOR2I &aVector) override |
void | AddShape (SHAPE *aShape) |
bool | Empty () const |
int | Size () const |
void | Rotate (double aAngle, const VECTOR2I &aCenter={ 0, 0 }) override |
bool | IsSolid () const override |
SHAPE * | UniqueSubshape () const |
virtual bool | HasIndexableSubshapes () const override |
virtual size_t | GetIndexableSubshapeCount () const override |
virtual void | GetIndexableSubshapes (std::vector< SHAPE * > &aSubshapes) override |
bool | ConvertToSimplePolygon (SHAPE_SIMPLE *aOut) const |
bool | IsNull () const |
Return true if the shape is a null shape. More... | |
virtual bool | Collide (const VECTOR2I &aP, int aClearance=0, int *aActual=nullptr, VECTOR2I *aLocation=nullptr) const |
Check if the boundary of shape (this) lies closer to the point aP than aClearance, indicating a collision. More... | |
virtual VECTOR2I | Centre () const |
Compute a center-of-mass of the shape. More... | |
virtual bool | Parse (std::stringstream &aStream) |
FACET * | NewFacet () |
SGNODE * | CalcShape (SGNODE *aParent, SGNODE *aColor, WRL1_ORDER aVertexOrder, float aCreaseLimit=0.74317, bool isVRML2=false) |
SHAPE_TYPE | Type () const |
Return the type of the shape. More... | |
Static Public Attributes | |
static const int | MIN_PRECISION_IU = 4 |
This is the minimum precision for all the points in a shape. More... | |
Protected Types | |
typedef VECTOR2I::extended_type | ecoord |
Protected Attributes | |
SHAPE_TYPE | m_type |
< type of our shape More... | |
Private Attributes | |
BOX2I | m_cachedBBox |
bool | m_dirty |
std::vector< SHAPE * > | m_shapes |
Definition at line 35 of file shape_compound.h.
|
protectedinherited |
|
inline |
SHAPE_COMPOUND::SHAPE_COMPOUND | ( | const std::vector< SHAPE * > & | aShapes | ) |
Definition at line 42 of file shape_compound.cpp.
SHAPE_COMPOUND::SHAPE_COMPOUND | ( | const SHAPE_COMPOUND & | aOther | ) |
Definition at line 51 of file shape_compound.cpp.
SHAPE_COMPOUND::~SHAPE_COMPOUND | ( | ) |
|
inline |
Definition at line 78 of file shape_compound.h.
References SHAPE_BASE::GetIndexableSubshapes(), SHAPE_BASE::HasIndexableSubshapes(), m_dirty, and m_shapes.
Referenced by PNS::SHOVE::onCollidingVia().
|
overridevirtual |
Compute a bounding box of the shape, with a margin of aClearance a collision.
aClearance | how much the bounding box is expanded wrs to the minimum enclosing rectangle for the shape. |
Implements SHAPE.
Definition at line 76 of file shape_compound.cpp.
References m_shapes, and BOX2< Vec >::Merge().
|
inherited |
Definition at line 713 of file wrlfacet.cpp.
References IFSG_NODE::AddChildNode(), IFSG_INDEX::AddIndex(), IFSG_NODE::AddRefNode(), SHAPE::facets, IFSG_NODE::GetRawPtr(), S3D::GetSGNodeParent(), IFSG_SHAPE::NewNode(), IFSG_FACESET::NewNode(), NULL, IFSG_COLORS::SetColorList(), IFSG_COORDS::SetCoordsList(), IFSG_NORMALS::SetNormalList(), SGPOINT::x, SGPOINT::y, and SGPOINT::z.
Referenced by WRL1FACESET::TranslateToSG(), X3DIFACESET::TranslateToSG(), and WRL2FACESET::TranslateToSG().
|
inlinevirtualinherited |
Compute a center-of-mass of the shape.
Definition at line 216 of file shape.h.
References SHAPE::BBox(), and BOX2< Vec >::Centre().
Referenced by Collide().
|
overridevirtual |
Return a dynamically allocated copy of the shape.
copy | of the shape |
Reimplemented from SHAPE.
Definition at line 70 of file shape_compound.cpp.
References SHAPE_COMPOUND().
|
overridevirtual |
Check if the boundary of shape (this) lies closer to the segment aSeg than aClearance, indicating a collision.
aActual | [out] an optional pointer to an int to be updated with the actual distance int the event of a collision. |
aLocation | [out] an option pointer to a point to store a nearby location in the event of a collision. |
Implements SHAPE.
Definition at line 117 of file shape_compound.cpp.
References m_shapes.
|
inlineoverridevirtual |
Check if the boundary of shape (this) lies closer to the shape aShape than aClearance, indicating a collision.
aShape | shape to check collision against |
aClearance | minimum clearance |
aMTV | minimum translation vector |
aActual | [out] an optional pointer to an int to store the actual distance in the event of a collision. |
aLocation | [out] an option pointer to a point to store a nearby location in the event of a collision. |
Reimplemented from SHAPE.
Definition at line 56 of file shape_compound.h.
References SHAPE::Collide().
|
inlineoverridevirtual |
Reimplemented from SHAPE.
Definition at line 61 of file shape_compound.h.
References SHAPE::Collide().
|
inlinevirtualinherited |
Check if the boundary of shape (this) lies closer to the point aP than aClearance, indicating a collision.
aActual | [out] an optional pointer to an int to store the actual distance in the event of a collision. |
aLocation | [out] an option pointer to a point to store a nearby location in the event of a collision. |
Reimplemented in SHAPE_POLY_SET, SHAPE_LINE_CHAIN_BASE, SHAPE_ARC, and SHAPE_SEGMENT.
Definition at line 165 of file shape.h.
Referenced by DRC_RTREE::CheckColliding(), Collide(), SHAPE_SEGMENT::Collide(), collide(), SHAPE_RECT::Collide(), SHAPE_POLY_SET::Collide(), PNS::ITEM::collideSimple(), PNS::SHOVE::onCollidingVia(), PNS::HIT_VISITOR::operator()(), DRC_RTREE::QueryColliding(), PNS::OPTIMIZER::smartPadsSingle(), DRC_TEST_PROVIDER_EDGE_CLEARANCE::testAgainstEdge(), DRC_TEST_PROVIDER_COPPER_CLEARANCE::testPadAgainstItem(), and DRC_TEST_PROVIDER_COPPER_CLEARANCE::testTrackAgainstItem().
bool SHAPE_COMPOUND::ConvertToSimplePolygon | ( | SHAPE_SIMPLE * | aOut | ) | const |
Definition at line 158 of file shape_compound.cpp.
int SHAPE_COMPOUND::Distance | ( | const SEG & | aSeg | ) | const |
Definition at line 98 of file shape_compound.cpp.
|
inline |
|
overridevirtual |
|
inlineoverridevirtual |
Reimplemented from SHAPE_BASE.
Definition at line 123 of file shape_compound.h.
References m_shapes.
|
inlineoverridevirtual |
Reimplemented from SHAPE_BASE.
Definition at line 128 of file shape_compound.h.
References m_shapes.
|
inlineoverridevirtual |
Reimplemented from SHAPE_BASE.
Definition at line 118 of file shape_compound.h.
|
inlineinherited |
Return true if the shape is a null shape.
true | if null :-) |
Definition at line 150 of file shape.h.
References SHAPE_BASE::m_type, and SH_NULL.
|
overridevirtual |
|
overridevirtual |
|
inherited |
Definition at line 705 of file wrlfacet.cpp.
References SHAPE::facets.
Referenced by WRL1FACESET::TranslateToSG(), X3DIFACESET::TranslateToSG(), and WRL2FACESET::TranslateToSG().
|
virtualinherited |
Reimplemented in SHAPE_POLY_SET, and SHAPE_LINE_CHAIN.
|
overridevirtual |
aCenter | is the rotation center. |
aAngle | rotation angle in radians. |
Implements SHAPE.
Definition at line 105 of file shape_compound.cpp.
|
inline |
Definition at line 67 of file shape_compound.h.
References m_shapes.
Referenced by collideShapes(), PNS::SOLID::HoleHull(), PNS::SOLID::Hull(), and SHAPE_COMPOUND().
|
inline |
|
inlineinherited |
Return the type of the shape.
the | type |
Definition at line 94 of file shape.h.
References SHAPE_BASE::m_type.
Referenced by PNS::DP_GATEWAYS::BuildFromPrimitivePair(), PNS::buildHullForPrimitiveShape(), Collide(), SHAPE_POLY_SET::Collide(), collideShapes(), collideSingleShapes(), PNS::OPTIMIZER::computeBreakouts(), ROUTER_PREVIEW_ITEM::drawShape(), PNS::SOLID::HoleHull(), PNS::SOLID::Hull(), and SHAPE_FILE_IO::Write().
|
inline |
|
private |
Definition at line 136 of file shape_compound.h.
|
private |
Definition at line 137 of file shape_compound.h.
Referenced by AddShape(), and SHAPE_COMPOUND().
|
private |
Definition at line 138 of file shape_compound.h.
Referenced by AddShape(), BBox(), Collide(), Empty(), Format(), GetIndexableSubshapeCount(), GetIndexableSubshapes(), Move(), SHAPE_COMPOUND(), Shapes(), Size(), UniqueSubshape(), and ~SHAPE_COMPOUND().
|
protectedinherited |
< type of our shape
Definition at line 110 of file shape.h.
Referenced by SHAPE::IsNull(), and SHAPE_BASE::Type().
|
staticinherited |
This is the minimum precision for all the points in a shape.
Definition at line 122 of file shape.h.
Referenced by BOOST_AUTO_TEST_CASE(), DIRECTION_45::BuildInitialTrace(), CompareLength(), EDIT_TOOL::FilletTracks(), and CIRCLE::IntersectLine().