Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
Public Member Functions | Static Public Attributes | List of all members
extruder::IExtrudeSet Class Referenceabstract

Provides interface to IExtrudeSet. Contains containers for points, edges and blocks objects. More...

#include <iextrudeset.h>

Public Member Functions

virtual IThinggetIThing ()=0
 returns its IThing pointer
 
virtual const IThinggetIThing () const =0
 returns its const IThing pointer
 
virtual const QObject * getQObject () const =0
 returns its const QObject pointer
 
virtual QObject * getQObject ()=0
 returns its QObject pointer
 
virtual QString getName () const =0
 returns the set name
 
virtual IExtrudePointcreatePoint (const DVect &pos)=0
 Adds a point to the point container and returns a pointer to the newly created object. The point is located at pos.
 
virtual IExtrudeEdgecreateEdge (IExtrudePoint *end1, IExtrudePoint *end2, bool useDefaultSize, QString *str)=0
 Adds a edge to the edge container and returns a pointer to the newly created object. The edge is defined by verices end1 and end2.
 
virtual IContainergetPointContainer ()=0
 Adds a block to the block container and returns a pointer to the newly created object. More...
 
virtual const IContainergetPointContainer () const =0
 returns a const pointer to the point container.
 
virtual const IExtrudePointfindPointWithID (quint64 id) const =0
 given an id, returns a const pointer to the point object.
 
virtual IExtrudePointfindPointWithID (quint64 id)=0
 given an id, returns a pointer to the point object.
 
virtual const IGeomPointfindClosestPoint (const DVect &pos, const double &radius=limits< double >::max()) const =0
 given a position pos in space, returns a const pointer to the closest point object within a given radius.
 
virtual IGeomPointfindClosestPoint (const DVect &pos, const double &radius=limits< double >::max())=0
 given a position pos in space, returns a pointer to the closest point object within a given radius.
 
virtual const QList< QList< const IExtrudePoint * > > findPotentialPolygonAt (DVect pos) const =0
 Test if a potential closed polygon exists at pos. Returns vertices of the polygon.
 
virtual IContainergetEdgeContainer ()=0
 Test if a (quad) block exists with 2 points on a diagonal. More...
 
virtual const IContainergetEdgeContainer () const =0
 returns a const pointer to the edge container container.
 
virtual const IExtrudeEdgefindEdgeWithID (quint64 id) const =0
 given an id, returns a const pointer to the edge object.
 
virtual IExtrudeEdgefindEdgeWithID (quint64 id)=0
 given an id, returns a pointer to the edge object.
 
virtual const IExtrudeEdgefindClosestEdge (const DVect &pos, const double &radius=limits< double >::max()) const =0
 given a position pos in space, returns a const pointer to the closest edge object within a given radius.
 
virtual IExtrudeEdgefindClosestEdge (const DVect &pos, const double &radius=limits< double >::max())=0
 given a position pos in space, returns a pointer to the closest edge object within a given radius.
 
virtual const IExtrudeEdgefindMatchingEdge (const IGeomPoint *end1, const IGeomPoint *end2) const =0
 given the two vertices end1 and end2 of an edge, returns a pointer to the matching edge object.
 
virtual IExtrudeEdgefindMatchingEdge (const IGeomPoint *end1, const IGeomPoint *end2)=0
 given the two vertices end1 and end2 of an edge, returns a pointer to the matching edge object.
 
virtual quint32 getEdgesByBreakAngle (quint32 edgeID, double breakAngle, QList< quint32 > *connectedEdges) const =0
 given one edge, populate connectedEdges with ID's of edges which are connected to it and to one another with the angle less than the break angle
 
virtual quint32 combineEdgesToSingleEdge (QList< quint32 > *connectedEdges, QString *edgeWarning=nullptr)=0
 given list of edge IDs, combine them to single curved edge
 
virtual void deletePoint (IExtrudePoint *pointIn, uint *edgeCount=0, uint *blockCount=0)=0
 Delete point from set.
 
virtual void deleteEdge (IExtrudeEdge *edgeIn, uint *blockCount=0)=0
 Delete edge from set.
 
virtual void deleteBlock (IExtrudeRegion *b)=0
 Delete block from set.
 
virtual IExtrudeRegioncreateBlockByPoints (IExtrudePoint *p0In, IExtrudePoint *p1In, IExtrudePoint *p2In, IExtrudePoint *p3In, quint32 *newedgecount=0, bool ignoreerror=false)=0
 Create a new regular block by 3 or 4 points.
 
virtual IExtrudeRegioncreateBlockByPoints (QSet< quint64 > inputPts, QSet< QString > *errorsList=nullptr, QList< QString > *warningsList=nullptr)=0
 Create a new block by given set of points (point IDs)
 
virtual IExtrudeRegioncreateBlockAt (DVect pos, QSet< QString > *errorsList=nullptr, QList< QString > *outMessages=nullptr)=0
 Create a new block at a given position.
 
virtual bool createBlocksAuto (IGroupID *group=nullptr, QSet< QString > *errorsList=nullptr, QList< QString > *outMessages=nullptr, const IRange *range=nullptr)=0
 Automatically create new blocks in all suitable closed polygons presents in the set.
 
virtual int getPointSize () const =0
 returns number of points.
 
virtual int getEdgeSize ()=0
 returns number of edges.
 
virtual int getBlockSize ()=0
 returns number of blocks.
 
virtual void clearMetaData ()=0
 
virtual void setMetaKeyValue (const QString &key, const QString &value)=0
 Add or change MetaData key and value.
 
virtual int getMetaCount () const =0
 Returns the number of MetaData objects in the Metadata vector.
 
virtual QString getMetaKey (int index) const =0
 Given an index to MetaData vector, returns the MetaData key;.
 
virtual QString getMetaValue (int index) const =0
 Given an index to MetaData vector, returns the MetaData value;.
 
virtual int findMetaKeyIndex (const QString &key) const =0
 Given an key, returns the corresponding index of the MetaData vector;.
 
virtual QString findMetaKeyValue (const QString &key) const =0
 Given an key, searchs the MedaData vector and returns the corresponding MetaData value;.
 
virtual IContainergetRegionsContainer ()=0
 returns a pointer to the block container.
 
virtual const IContainergetRegionsContainer () const =0
 returns a const pointer to the block container.
 
virtual const IExtrudeRegionfindBlockWithID (quint64 id) const =0
 given an id, returns a const pointer to the block object.
 
virtual IExtrudeRegionfindBlockWithID (quint64 id)=0
 given an id, returns a pointer to the block object.
 
virtual const IExtrudeRegionfindClosestBlock (const DVect &pos, const double &radius=limits< double >::max()) const =0
 given a position pos in space, returns a const pointer to the closest block object within a given radius.
 
virtual IExtrudeRegionfindClosestBlock (const DVect &pos, const double &radius=limits< double >::max())=0
 given a position pos in space, returns a pointer to the closest block object within a given radius.
 
virtual void getRegionLocations (FArray< DVect > *ret, quint64 wr=0, int we=-1)=0
 Get the locations of all of the region nodes.
 
virtual bool valid (QList< QString > *problems=nullptr, bool areaCheck=false) const =0
 Return true if basic block geometry is good.
 
virtual bool isAutoZone () const =0
 Return true if any point-point are too close, by distance atol. More...
 
virtual double getAutoZoneEdge () const =0
 Return AutoZone target average zone edge length.
 
virtual int getAutoZoneDir () const =0
 Return AutoZone direction: 0=all, 1=x,y only, 2=normal only.
 
virtual int getAutoZoneMode () const =0
 Returns AutoZone modes: 0 for edge, 1 for size, 2 for zones.
 
virtual int getAutoZoneSize () const =0
 Return AutoZone size (number of zones across largest dimension of x,y)
 
virtual int getAutoZoneTotal () const =0
 Return AutoZone target (maximum) total number of zones.
 
virtual bool isAutoZoneTotalAllowed () const =0
 check if AutoZone Total can be performed
 
virtual double computeZones2D () const =0
 Return number of 2d zones in xy plane.
 
virtual void setAutoZoneMode (int mode)=0
 Set AutoZone flag state. More...
 
virtual void setAutoZoneDir (int dir)=0
 Set AutoZone direction: 0=all, 1=x,y only, 2=normal only.
 
virtual void setAutoZoneEdge (double x)=0
 Set AutoZone target zone average edge length.
 
virtual void setAutoZoneSize (int n)=0
 Set AutoZone target size (number of zones across largest dimension of x,y)
 
virtual void setAutoZoneTotal (int nz)=0
 Set AutoZone target target (maximum) total number of zones.
 
virtual const DVectgetOrigin () const =0
 Return extrusion origin point.
 
virtual const AxesgetAxesInput () const =0
 Return input (raw) Axes.
 
virtual Axes getAxes () const =0
 Return internal Axes (modified for orthogonality and unit lengths)
 
virtual const DVectgetUAxis () const =0
 Return extrusion u-axis direction (unit length)
 
virtual const DVectgetVAxis () const =0
 Return extrusion v-axis direction (unit length)
 
virtual void setOrigin (DVect c)=0
 Set extrusion origin.
 
virtual void setUAxis (DVect u)=0
 Set extrusion u-axis direction (unit length), adjust v-axis and normal.
 
virtual void setVAxis (DVect v)=0
 Set extrusion v-axis direction (unit length), adjust u-axis and normal.
 
virtual void setUVAxes (DVect u, DVect v)=0
 Set extrusion u,v axes, adjust v-axis, compute normal.
 
virtual bool testAxesBasisNormal ()=0
 Return true if u,v (and n in 3D) axes are unit length.
 
virtual bool testAxesBasisOrthogonal ()=0
 Return true if u,v (and n in 3D) axes are orthogonal.
 
virtual bool isAutoValidation () const =0
 Return auto-validation state, true means validation checks disable changes that created invalidate geometry.
 
virtual void setAutoValidation (bool x)=0
 Set auto-validation state, true means validation checks disable changes that created invalidate geometry.
 
virtual double getValidationTol () const =0
 Return relative tolerance used in auto-validation.
 
virtual void setValidationTol (double x)=0
 Set relative tolerance used in auto-validation.
 
virtual double computeValidationAbsTol () const =0
 Compute absolute tolerance used in validation.
 
virtual void setEdgeCombineTolerance (const double tol)=0
 Set tolerance for combining multiple edges to a single curved edge (affects amount of control points on the new edge)
 
virtual double getEdgeCombineTolerance () const =0
 Return tolerance for combining multiple edges.
 
virtual bool countZoneQuality (int statecount[], bool areaCheck=false) const =0
 Count number of problem zones, index 0=ok, 1,2=warnings, 3,4=bad. Return true if any bad.
 
virtual bool anyZonesBad (bool areaCheck=false) const =0
 Return true if any bad zones.
 
virtual QString getBadZonesReport () const =0
 Return descriptive string of warning and bad zone counts.
 
virtual QString getZoneQualityReport (bool badonly=false) const =0
 Return descriptive string of bad zone counts.
 
virtual QString getZoneQualityReport (int statecount[]) const =0
 Convert countlists to string report.
 
virtual void pointAdded (quint64 id)=0
 Signal emitted when a point with id was added. id equal zero means ALL points were added (e.g. restore)
 
virtual void pointRemoved (quint64 id)=0
 Signal emitted when a point with id was removed. id equal zero means ALL points were removed (e.g. new)
 
virtual void edgeAdded (quint64 id)=0
 Signal emitted when an edge with id was added. id equal zero means ALL edges were added (e.g. restore)
 
virtual void edgeRemoved (quint64 id)=0
 Signal emitted when an edge with id was removed. id equal zero means ALL edges were removed (e.g. new)
 
virtual void blockAdded (quint64 id)=0
 Signal emitted when a block with id was added. id equal zero means ALL blocks were added (e.g. restore)
 
virtual void blockAddedLater (quint64 id)=0
 Signal emitted when a block with id was added after all edges were assigned. id equal zero means ALL blocks were added (e.g. restore)
 
virtual void blockRemoved (quint64 id)=0
 Signal emitted when a block with id was removed. id equal zero means ALL blocks were removed (e.g. new)
 
virtual void pointMoved (quint64 id)=0
 Signal emitted when a point with id has changed its position.
 
virtual void edgeMoved (quint64 id)=0
 Signal emitted when an edge with id has changed its position (implied from pointMoved)
 
virtual void blockMoved (quint64 izd)=0
 Signal emitted when an block with id has changed its position (implied from edgeMoved and blockMoved)
 
virtual void edgePointChanged (quint64 id)=0
 Signal emitted when a point associated with an end of an edge with id has been added or removed.
 
virtual void blockEdgeChanged (quint64 id)=0
 Signal emitted when an edge associated with a block with id has been added or removed.
 
virtual void edgeTypeChanged (quint64 id)=0
 Signal emitted when the Type property has changed in the edge. ID 0 means ALL edges have changed.
 
virtual void sendEdgeControlPointAddedNotice (quint64 id, int index)=0
 Signal emitted when a control point is added.
 
virtual void edgeSizeChanged (quint64 id, quint32 size)=0
 Signal emitted when the Size property has changed in the edge. ID 0 means ALL edges changed to size. (generally 0.)
 
virtual void edgeRatioChanged (quint64 id, const double &rat)=0
 Signal emitted when the ratio property has changed on the edge. ID 0 means ALL edges changed to rat. (generally 1.0).
 
virtual void blockMultiplierChanged (quint64 id, quint32 m)=0
 
virtual void blockOrientationChanged (quint64 id)=0
 Signal emitted when block orientation has changed.
 
virtual void axesChanged ()=0
 
virtual void autoZoneChange (bool on, int mode, double dx, int n, int t)=0
 Signal AutoZone state has changed.
 
virtual void metaAdded (int index)=0
 Signal MetaData added.
 
virtual void metaRemoved (int index)=0
 Signal MetaData removed.
 
virtual void metaChanged (int index)=0
 Signal MetaData changed.
 
virtual uint getPointGroupNotice () const =0
 Notice point groups changed.
 
virtual uint getEdgeGroupNotice () const =0
 Notice edge groups changed.
 
virtual uint getBlockGroupNotice () const =0
 Notice block groups changed.
 
virtual uint getTwoDGeomChangedNotice () const =0
 Notice that 2D geometry has changed (points/edges/blocks moved or removed)
 

Static Public Attributes

static const TType type_ = 0x4cb61c35
 The type identification number for this class, for use in convert_cast() and convert_getcast().
 

Detailed Description

Provides interface to IExtrudeSet. Contains containers for points, edges and blocks objects.

Member Function Documentation

◆ axesChanged()

virtual void extruder::IExtrudeSet::axesChanged ( )
pure virtual

Signal number of segments has changed Signal extrusion axes or origin has changed

◆ blockMultiplierChanged()

virtual void extruder::IExtrudeSet::blockMultiplierChanged ( quint64  id,
quint32  m 
)
pure virtual

Signal emitted when the edge parameterization has changed in some way (could be anything, control points, type, etc). virtual void edgeParamChanged(quint64 id)=0; Signal emitted when block multiplier has changed.

◆ clearMetaData()

virtual void extruder::IExtrudeSet::clearMetaData ( )
pure virtual

MetaData is used to store generic data and it contains a key-value pair of strings. Clear Meta Data

◆ getEdgeContainer()

virtual IContainer* extruder::IExtrudeSet::getEdgeContainer ( )
pure virtual

Test if a (quad) block exists with 2 points on a diagonal.

returns a pointer to the edge container container.

◆ getPointContainer()

virtual IContainer* extruder::IExtrudeSet::getPointContainer ( )
pure virtual

Adds a block to the block container and returns a pointer to the newly created object.

returns a pointer to the point container.

◆ isAutoZone()

virtual bool extruder::IExtrudeSet::isAutoZone ( ) const
pure virtual

Return true if any point-point are too close, by distance atol.

Return true if any point-edge are too close, by distance atol Return true if any edges are crossing Return true if points insde block area. Return true if any validation checks fail Returns true is auto zone mode is on

◆ setAutoZoneMode()

virtual void extruder::IExtrudeSet::setAutoZoneMode ( int  mode)
pure virtual

Set AutoZone flag state.

Set AutoZone mode: 0 for edge, 1 for size, 2 for zones


The documentation for this class was generated from the following file: