TexGen
|
Hybrid of any number of other sections. More...
#include <SectionHybrid.h>
Public Member Functions | |
CSectionHybrid (void) | |
Empty hybrid section, parts can be added with the AddDivision and AssignSection functions. More... | |
CSectionHybrid (const CSection &TopHalf, const CSection &BottomHalf) | |
Hybrid of two sections split into the upper and lower half. More... | |
CSectionHybrid (const CSection &TopRight, const CSection &TopLeft, const CSection &BottomLeft, const CSection &BottomRight) | |
Hybrid of four sections split into four quadrants. More... | |
CSectionHybrid (TiXmlElement &Element) | |
~CSectionHybrid (void) | |
bool | operator== (const CSection &CompareMe) const |
Overloaded equality operator to determine if two sections are the same. More... | |
CSection * | Copy () const |
Create a copy of the derived section and return a pointer to the newly created instance. More... | |
void | PopulateTiXmlElement (TiXmlElement &Element, OUTPUT_TYPE OutputType) const |
Used for saving data to XML. More... | |
string | GetType () const |
Derived class should return the class name. More... | |
string | GetDefaultName () const |
Get the default name to assign to a section. More... | |
void | AddDivision (double dFraction) |
Add a division where the sections will transfer from one to the other. More... | |
bool | AssignSection (int iIndex, const CSection &Section) |
Assign a section between divisions. More... | |
int | GetNumDivisions () const |
int | GetNumSections () |
double | GetDivision (int iIndex) const |
const CSection & | GetSection (int iIndex) const |
XY | GetPoint (double t) const |
Get a point lying on the perimeter correspending to parametric value t. More... | |
virtual const vector< XY > & | GetPoints (int iNumPoints, bool bEquiSpaced=false) const |
Get a section with given number of points on the perimeter. More... | |
const CMesh & | GetMesh (int iNumPoints, bool bEquiSpaced=true) const |
void | AssignSectionMesh (const CSectionMesh &SectionMesh) |
Assign a mesh to the section. More... | |
virtual string | GetBaseType () const |
void | SetSectionMeshLayers (int iNum) |
Specify number of layers for associated section mesh. More... | |
int | GetSectionMeshLayers () |
Get the number of layers for associated section mesh. More... | |
Static Public Member Functions | |
static CObjectContainer< CSection > | CreateSection (TiXmlElement &Element) |
Create a section from TiXmlElement. More... | |
static double | GetArea (const vector< XY > &Section) |
Get the area of a section. More... | |
static double | GetCircumference (const vector< XY > &Section) |
Get the circumference of a section. More... | |
Protected Member Functions | |
void | CreateSection (int iNumPoints) const |
Create a section with given number of points on the perimeter. More... | |
bool | CreateEquiSpacedSection (int iNumPoints) const |
Same as CreateSection except all the points will be spaced the same distance apart. More... | |
Protected Attributes | |
vector< double > | m_Divisions |
vector< CObjectContainer< CSection > > | m_Sections |
vector< XY > | m_EdgePoints |
List of 2d points creating the outline of the cross-section. More... | |
bool | m_bEquiSpaced |
Keep this variable to determine whether the section was created with equidistant points or not. More... | |
CObjectContainer< CSectionMesh > | m_pSectionMesh |
Pointer to a derived class of SectionMesh, this class is in charge of creating the section mesh. More... | |
Private Member Functions | |
void | AssignDefaults () |
Hybrid of any number of other sections.
Definition at line 28 of file SectionHybrid.h.
CSectionHybrid::CSectionHybrid | ( | void | ) |
Empty hybrid section, parts can be added with the AddDivision and AssignSection functions.
Definition at line 26 of file SectionHybrid.cpp.
References m_Sections.
Hybrid of two sections split into the upper and lower half.
Definition at line 32 of file SectionHybrid.cpp.
References AddDivision(), and AssignSection().
CSectionHybrid::CSectionHybrid | ( | const CSection & | TopRight, |
const CSection & | TopLeft, | ||
const CSection & | BottomLeft, | ||
const CSection & | BottomRight | ||
) |
Hybrid of four sections split into four quadrants.
Definition at line 40 of file SectionHybrid.cpp.
References AddDivision(), and AssignSection().
CSectionHybrid::CSectionHybrid | ( | TiXmlElement & | Element | ) |
Definition at line 64 of file SectionHybrid.cpp.
References AddDivision(), AssignSection(), TexGen::CSection::CreateSection(), and FOR_EACH_TIXMLELEMENT.
CSectionHybrid::~CSectionHybrid | ( | void | ) |
Definition at line 52 of file SectionHybrid.cpp.
void CSectionHybrid::AddDivision | ( | double | dFraction | ) |
Add a division where the sections will transfer from one to the other.
Definition at line 98 of file SectionHybrid.cpp.
References m_Divisions, and m_Sections.
Referenced by CSectionHybrid().
|
privateinherited |
Definition at line 73 of file Section.cpp.
References TexGen::CSection::m_pSectionMesh.
Referenced by TexGen::CSection::CSection().
bool CSectionHybrid::AssignSection | ( | int | iIndex, |
const CSection & | Section | ||
) |
Assign a section between divisions.
Definition at line 105 of file SectionHybrid.cpp.
References m_Sections, and TGERROR.
Referenced by CSectionHybrid().
|
inherited |
Assign a mesh to the section.
Definition at line 227 of file Section.cpp.
References TexGen::CSection::m_pSectionMesh.
Referenced by TexGen::CTextileOrthogonal::AdjustMidLayerHeights(), TexGen::CTextileLayerToLayer::BuildLayerToLayerTextile(), TexGen::CShearedTextileWeave2D::BuildTextile(), TexGen::CTextile3DWeave::BuildTextile(), TexGen::CTextileAngleInterlock::BuildTextile(), TexGen::CTextileOffsetAngleInterlock::BuildTextile(), TexGen::CTextileOrthogonal::BuildTextile(), TexGen::CTextileWeave::BuildTextile(), TexGen::CTextileOrthogonal::BuildWeavePatternTextile(), TexGen::CTextileOrthogonal::CorrectCrimpInterference(), TexGen::CTextileWeave::CorrectInterference(), TexGen::CTextileWeave::CorrectYarnWidths(), TexGen::CShearedTextileWeave2D::ModifySection(), and TexGen::CShearedTextileWeave2D::ReplaceSection().
|
inlinevirtual |
Create a copy of the derived section and return a pointer to the newly created instance.
Implements TexGen::CSection.
Definition at line 41 of file SectionHybrid.h.
Referenced by GetPoint().
|
protectedinherited |
Same as CreateSection except all the points will be spaced the same distance apart.
This should work fine as long as the first derivative of the parametric equation with respect to t is continuous and the number of points making up the section is not too small
Definition at line 143 of file Section.cpp.
References TexGen::CSection::GetDefaultName(), TexGen::GetLength(), TexGen::CSection::GetPoint(), TexGen::CSection::m_bEquiSpaced, TexGen::CSection::m_EdgePoints, TexGen::stringify(), and TGERROR.
Referenced by TexGen::CSection::GetPoints().
|
protectedinherited |
Create a section with given number of points on the perimeter.
m_EdgePoints will be populated with given number of points
iNumPoints | Number of points the section is made up of |
Definition at line 129 of file Section.cpp.
References TexGen::CSection::GetPoint(), TexGen::CSection::m_bEquiSpaced, and TexGen::CSection::m_EdgePoints.
|
staticinherited |
Create a section from TiXmlElement.
Definition at line 78 of file Section.cpp.
References TexGen::CSection::CSectionHybrid, TexGen::CSection::CSectionRotated, and TexGen::CSection::CSectionScaled.
Referenced by CSectionHybrid(), TexGen::CSectionRotated::CSectionRotated(), TexGen::CSectionScaled::CSectionScaled(), TexGen::CYarnSectionConstant::CYarnSectionConstant(), TexGen::CYarnSectionInterpNode::CYarnSectionInterpNode(), TexGen::CYarnSectionInterpPosition::CYarnSectionInterpPosition(), and TexGen::CSection::GetPoints().
|
staticinherited |
Get the area of a section.
Definition at line 261 of file Section.cpp.
Referenced by TexGen::CTextileOrthogonal::AdjustBinderYarnSection(), TexGen::CTextileOrthogonal::AdjustMidLayerHeights(), TexGen::CTextileOrthogonal::AdjustOuterWeftYarns(), TexGen::CTextile3DWeave::AdjustPowerEllipsePower(), TexGen::CTextile3DWeave::AdjustPowerEllipseSectionWidth(), TexGen::CShearedTextileWeave2D::AdjustSections(), TexGen::CTextileOrthogonal::AdjustWeftHeight(), TexGen::CTextileOrthogonal::AdjustWeftToFitBinderHeight(), TexGen::CTextileOrthogonal::ChangePowerEllipseSection(), TexGen::CTextileOrthogonal::CheckBinderWidths(), TexGen::CSectionMeshTriangulate::CreateMesh(), TexGen::CTextile3DWeave::FindPowerEllipseSectionHeight(), TexGen::CShearedTextileWeave2D::GetArea(), TexGen::CSectionMeshTriangulate::GetTriangleMesh(), TexGen::CFibreDistributionConst::IntegrateDistribution(), and TexGen::CTextile3DWeave::ReducePowerEllipseHeight().
|
inlinevirtualinherited |
Reimplemented in TexGen::CSectionRotated.
|
staticinherited |
Get the circumference of a section.
Definition at line 273 of file Section.cpp.
References TexGen::GetLength().
Referenced by TexGen::CYarn::SetResolution().
|
virtual |
Get the default name to assign to a section.
Implements TexGen::CSection.
Definition at line 146 of file SectionHybrid.cpp.
References m_Sections, and TexGen::stringify().
double CSectionHybrid::GetDivision | ( | int | iIndex | ) | const |
Definition at line 151 of file SectionHybrid.cpp.
References m_Divisions.
|
inherited |
Get a mesh with given number of points on the perimeter, a mesh must be assigned to the section before this function is called.
Definition at line 107 of file Section.cpp.
References TexGen::CSection::GetDefaultName(), TexGen::CSection::GetPoints(), TexGen::CSection::m_pSectionMesh, and TGERROR.
Referenced by TexGen::CYarnSectionInterp::GetInterpedSectionMesh().
|
inline |
Definition at line 54 of file SectionHybrid.h.
|
inline |
Definition at line 55 of file SectionHybrid.h.
|
virtual |
Get a point lying on the perimeter correspending to parametric value t.
Each section should be defined as a parametric function where t varies from 0 to 1 the function should start from the positive x axis at t=0 and go counter-clockwise through 360 degrees returning to its original position at t=1. In order for the CreateEquiSpacedSection function to work correctly, the parametric equation's first derivative with respect to t should be continuous.
Implements TexGen::CSection.
Definition at line 116 of file SectionHybrid.cpp.
References Copy(), TexGen::CSectionRotated::GetAngle(), GetType(), m_Divisions, m_Sections, and PI.
Referenced by TexGen::CTextileOrthogonal::GetHybridHeight(), and TexGen::CTextileOrthogonal::GetHybridWidth().
|
virtualinherited |
Get a section with given number of points on the perimeter.
The section is created and saved to m_EdgePoints which is then returned. If this function is called multiple times with the same parameter the section need not be recreated. Note that the returned vector is only valid until the next call to this function, a copy of the vector should be made if it needs to be kept for any period of time.
iNumPoints | Number of points the section is made up of |
bEquiSpaced | If set to true, the code will attempt to space the nodes at equal distances apart |
Reimplemented in TexGen::CSectionRectangle.
Definition at line 119 of file Section.cpp.
References TexGen::CSection::CreateEquiSpacedSection(), TexGen::CSection::CreateSection(), TexGen::CSection::m_bEquiSpaced, and TexGen::CSection::m_EdgePoints.
Referenced by TexGen::CTextileOrthogonal::AdjustBinderYarnSection(), TexGen::CTextileOrthogonal::AdjustMidLayerHeights(), TexGen::CTextileOrthogonal::AdjustOuterWeftYarns(), TexGen::CTextile3DWeave::AdjustPowerEllipsePower(), TexGen::CTextile3DWeave::AdjustPowerEllipseSectionWidth(), TexGen::CShearedTextileWeave2D::AdjustSections(), TexGen::CTextileOrthogonal::AdjustWeftHeight(), TexGen::CTextileOrthogonal::AdjustWeftToFitBinderHeight(), TexGen::CTextileOrthogonal::ChangePowerEllipseSection(), TexGen::CTextileOrthogonal::CheckBinderWidths(), TexGen::CTextile3DWeave::FindPowerEllipseSectionHeight(), TexGen::CShearedTextileWeave2D::GetArea(), TexGen::CYarnSectionInterp::GetInterpedSection(), TexGen::CSection::GetMesh(), and TexGen::CTextile3DWeave::ReducePowerEllipseHeight().
const CSection & CSectionHybrid::GetSection | ( | int | iIndex | ) | const |
Definition at line 157 of file SectionHybrid.cpp.
References m_Sections.
|
inherited |
Get the number of layers for associated section mesh.
Definition at line 239 of file Section.cpp.
References TexGen::CSectionMeshRectangleSection::GetNumLayers(), TexGen::CSectionMeshRectangular::GetNumLayers(), and TexGen::CSection::m_pSectionMesh.
Referenced by TexGen::CYarnSectionInterpNode::SetSectionMeshLayersEqual().
|
inlinevirtual |
Derived class should return the class name.
Implements TexGen::CSection.
Definition at line 45 of file SectionHybrid.h.
Referenced by GetPoint(), and operator==().
|
virtual |
Overloaded equality operator to determine if two sections are the same.
Implements TexGen::CSection.
Definition at line 56 of file SectionHybrid.cpp.
References GetType(), TexGen::CSection::GetType(), m_Divisions, and m_Sections.
|
virtual |
Used for saving data to XML.
Reimplemented from TexGen::CSection.
Definition at line 80 of file SectionHybrid.cpp.
References m_Divisions, m_Sections, TexGen::CSection::PopulateTiXmlElement(), and TexGen::stringify().
|
inherited |
Specify number of layers for associated section mesh.
Definition at line 232 of file Section.cpp.
References TexGen::CSection::m_pSectionMesh.
Referenced by TexGen::CYarnSectionInterpNode::SetSectionMeshLayersEqual(), and TexGen::CYarnSectionInterpPosition::SetSectionMeshLayersEqual().
|
mutableprotectedinherited |
Keep this variable to determine whether the section was created with equidistant points or not.
Definition at line 122 of file Section.h.
Referenced by TexGen::CSection::CreateEquiSpacedSection(), TexGen::CSectionPolygon::CreateSection(), TexGen::CSection::CreateSection(), TexGen::CSection::CSection(), TexGen::CSection::GetPoints(), and TexGen::CSection::PopulateTiXmlElement().
|
protected |
Definition at line 61 of file SectionHybrid.h.
Referenced by AddDivision(), GetDivision(), GetPoint(), operator==(), and PopulateTiXmlElement().
|
mutableprotectedinherited |
List of 2d points creating the outline of the cross-section.
Definition at line 119 of file Section.h.
Referenced by TexGen::CSection::CreateEquiSpacedSection(), TexGen::CSectionPolygon::CreateSection(), TexGen::CSection::CreateSection(), TexGen::CSection::CSection(), TexGen::CSection::GetPoints(), TexGen::CSectionRectangle::GetPoints(), and TexGen::CSection::PopulateTiXmlElement().
|
protectedinherited |
Pointer to a derived class of SectionMesh, this class is in charge of creating the section mesh.
Definition at line 125 of file Section.h.
Referenced by TexGen::CSection::AssignDefaults(), TexGen::CSection::AssignSectionMesh(), TexGen::CSection::CSection(), TexGen::CSectionRectangle::CSectionRectangle(), TexGen::CSectionRotated::CSectionRotated(), TexGen::CSection::GetMesh(), TexGen::CSection::GetSectionMeshLayers(), TexGen::CSection::PopulateTiXmlElement(), and TexGen::CSection::SetSectionMeshLayers().
|
protected |
Definition at line 62 of file SectionHybrid.h.
Referenced by AddDivision(), AssignSection(), CSectionHybrid(), GetDefaultName(), GetPoint(), GetSection(), operator==(), and PopulateTiXmlElement().