21 enum EdgeType { edgeTypeSimple=0, edgeTypePoly, edgeTypeEllipse };
23 enum EdgePolyType { edgePolyTypeLinear=0, edgePolyTypeArc, edgePolyTypeSpline };
121 virtual double getEdgePolylineControlW(
int id)
const = 0;
133 virtual void setEdgePolylineControlLocalW(
int index,
double w) = 0;
156 virtual bool belongsToIrregBlock()
const=0;
158 virtual DVect getTangent(
double mu)
const=0;
Interface for IExtrudeEdge objects.
Definition iextrudeedge.h:27
virtual void setEdgePolylineControlLocalV(int index, double v)=0
Set v local position of controlpoint.
virtual CLinkType< IExtrudeRegion > getStartExtrude() const =0
Returns a interface to a CLinkType<> object, a const pointer to the first object in the linked list.
virtual void setRatioIsolate(bool b)=0
Set zone ratio isolate flag (Stops propagating ratios by connected blocks)
virtual bool isPolyline() const =0
Is edge a polyline (linear and at least one control point)?
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition iextrudeedge.h:30
virtual bool isBlocked() const =0
Are there any blocks attached?
virtual double getFraction(uint32 i) const =0
Return fraction value.
virtual IThing * getIThing()=0
Return an IThing interface for this object.
virtual IExtrudePoint * getIExtrudePoint(uint32 end)=0
Returns a pointer to IExtrudePoint at end.
virtual int getEdgeBlockCount() const =0
Return number of blocks connected to edge.
virtual uint32 getEdgePolylineSize() const =0
Return number of segments in polyline.
virtual const IExtrudePoint * getIExtrudePoint(uint32 end) const =0
Returns a const pointer to IExtrudePoint at end.
virtual IGeomEdge * getIGeomEdge()=0
Return a IGeomPoint interface for this object.
virtual const IExtrudePoint * getEllipseArcWith() const =0
Return ellipse arc "with" point.
virtual IExtrudeRegion * getOtherBlock(IExtrudeRegion *b)=0
Return block, besides given one, sharing this edge, 0 if none.
virtual uint32 setRatio(const double &r)=0
Set zone ratio on edge.
virtual DVect getParametricLocation(const double &frac0) const =0
Return x,y parametric position, frac0=0 to 1.
virtual bool getRatioIsolate() const =0
Return zone ratio isolate flag (Stops propagating ratios by connected blocks)
virtual uint32 getEdgeType() const =0
Return EdgeType: 0=simple, 1=polyline, 2=ellipse arc.
virtual double getEdgePolylineLength() const =0
Return polyline length (linear segments only)
virtual const IThing * getIThing() const =0
Return a const IThing interface for this object.
virtual void setEdgePolylineControlPoint(int index, DVect p)=0
Set x,y position of controlpoint.
virtual double getEdgePolylineControlU(int id) const =0
Return local U coordinate of controlpoint.
virtual LinkType< IExtrudeEdge > getNextExtrude(uint32 end)=0
Returns a interface to a CLinkType<> object, a pointer to the next object in the linked list.
virtual const IExtrudePoint * getEllipseArcCenter() const =0
Return ellipse arc center point.
virtual void setEdgeType(int edgeType)=0
Set EdgeType.
virtual void setEdgeTypeSimple()=0
Set edge type as simple.
virtual void setEdgePolylineType(int curvetype=edgePolyTypeLinear)=0
Set EdgeType as polyline, and polyline type: 0=linear, 1=circle arcs, 2=cubic splines.
virtual void addEdgePolylineControlPoint(DVect p)=0
Add controlpoint by x,y position.
virtual void addEdgePolylineControlLocal(DVect p)=0
Add controlpoint by u,v position.
virtual bool isSimple() const =0
Is edge simple (linear, no control points)?
virtual double getZoneLength() const =0
Return zone length.
virtual CLinkType< IExtrudeEdge > getNextExtrude(uint32 end) const =0
Returns a interface to a CLinkType<> object, a const pointer to the next object in the linked list.
virtual DVect computeBlockSplitPoint(double mu, int index) const =0
Return x,y split position of block opposite edge to this edge, by parametric position mu.
virtual void setEdgePolylineControlLocalU(int index, double u)=0
Set u local position of controlpoint.
virtual void removeEdgePolylineControlPoint(int id)=0
Remove indexed control point.
virtual uint32 getHybridType() const =0
Return EdgeType: 0=simple, 1=polyline, 2=arc, 3=spline, 4=ellipse arc.
virtual void setEdgePolylineControlLocal(int index, DVect p)=0
Set u,v local position of controlpoint.
virtual DVect getDiscretizedLocation(uint32 index, uint32 multiplier) const =0
Return x,y gridpoint position along edge.
virtual DVect getEdgePolylineControlPoint(int id) const =0
Return position of control points, 1..size-1, index 0,size return endpoint positions.
virtual double findParameterForPosition(DVect pos) const =0
Estimate parametric position (0,1) of position.
virtual uint32 getEdgePolylineType() const =0
Return PolylineType: 0=linear segments, 1=circle arcs, 2=cubic splines.
virtual uint32 setSize(uint32 s)=0
Set (zone) size.
virtual uint32 getSize() const =0
Return (zone) size.
virtual const IGeomEdge * getIGeomEdge() const =0
Return a const IGeomPoint interface for this object.
virtual double getRatio() const =0
Return zone ratio.
virtual void setPointExtrude(IExtrudePoint *point, uint32 end)=0
Adds point at end.
virtual QList< uint64 > getConnectedEdges() const =0
Return list of edges connected by block opposite sides, used for assigning zone sizes and ratios.
virtual bool isCurved() const =0
Is edge a "curved" type (requiring sampling approximation)?
virtual double computeEdgePolylineCurveLength() const =0
Return computed length of edge, including estimate for curved edges.
virtual double getEdgePolylineControlV(int id) const =0
Return local V coordinate of controlpoint.
virtual LinkType< IExtrudeRegion > getStartExtrude()=0
Returns a interface to a CLinkType<> object, a pointer to the first object in the linked list.
Interface for IExtrudePoint objects.
Definition iextrudepoint.h:20
Interface for IExtrudeEdge objects.
Definition iextruderegion.h:21
Base class for items that will be stored in containers.
Definition ithing.h:30
Interface for a user-defined geometric edge, defined as the line between two IGeomPoint objects.
Definition igeomedge.h:24
uint32 TType
class type indicator
Definition basedef.h:46
DVect3 DVect
Vector of doubles, either 2D or 3D.
Definition dim.h:154
Interface for LinkType<> objects, POD that contain both the pointer to the next object and an index f...
namespace Itasca
Definition basememory.cpp:10
Itasca Library standard namespace, specific to 2D or 3D.
Definition icontactmodule.h:4
same as LynkType, but with a constant pointer object
Definition ilinktype.h:46
Interface for LinkType<> objects, POD that contain both the pointer to the next object and an index f...
Definition ilinktype.h:12