TexGen
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | List of all members
TexGen::CSectionPolygon Class Reference

Creates a polygonal section, where a list of points are given to form the closed polygon. More...

#include <SectionPolygon.h>

Inheritance diagram for TexGen::CSectionPolygon:
Inheritance graph
[legend]

Public Member Functions

 CSectionPolygon (const vector< XY > &PolygonPoints, bool bSingleQuadrant=false, bool bRetainPoints=false)
 
 CSectionPolygon (TiXmlElement &Element)
 
 ~CSectionPolygon (void)
 
bool operator== (const CSection &CompareMe) const
 Overloaded equality operator to determine if two sections are the same. More...
 
CSectionCopy () 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...
 
XY GetPoint (double t) const
 Get a point lying on the perimeter correspending to parametric value t. More...
 
void Scale (XY Scale)
 Change the scale of the section by multiplying each coordinate component by the component given by this XY struct. More...
 
void Scale (double dScale)
 Change the scale of the section by multiplying each coordinate value by a scalar. 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 CMeshGetMesh (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< CSectionCreateSection (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 CalcTValues ()
 Assign t value as proportion of distance around perimeter for each point. More...
 
void CreateSection () const
 Create section with edge points same as polygon points. More...
 
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< XYm_PolygonPoints
 
vector< double > m_t
 The proportion of the distance around the total perimeter range from 0 to 1 for each point. More...
 
bool m_bRetainPoints
 Whether or not to use the polygon points to define the section edge points. More...
 
vector< XYm_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< CSectionMeshm_pSectionMesh
 Pointer to a derived class of SectionMesh, this class is in charge of creating the section mesh. More...
 

Private Member Functions

void AssignDefaults ()
 

Detailed Description

Creates a polygonal section, where a list of points are given to form the closed polygon.

Points are in local XY coordinates relative to the yarn centreline.
Points start at (maxX, 0) and are ordered in an anticlockwise direction \Param PolygonPoints Vector of XY points \Param bSingleQuadrant true if only giving points for one quadrant which are automatically replicated to complete section \Param bRetainPoints true if want to force edge points of section to match points exactly, otherwise creates specified number of points around section

Definition at line 35 of file SectionPolygon.h.

Constructor & Destructor Documentation

◆ CSectionPolygon() [1/2]

CSectionPolygon::CSectionPolygon ( const vector< XY > &  PolygonPoints,
bool  bSingleQuadrant = false,
bool  bRetainPoints = false 
)

◆ CSectionPolygon() [2/2]

CSectionPolygon::CSectionPolygon ( TiXmlElement &  Element)

◆ ~CSectionPolygon()

CSectionPolygon::~CSectionPolygon ( void  )

Definition at line 62 of file SectionPolygon.cpp.

Member Function Documentation

◆ AssignDefaults()

void CSection::AssignDefaults ( )
privateinherited

Definition at line 73 of file Section.cpp.

References TexGen::CSection::m_pSectionMesh.

Referenced by TexGen::CSection::CSection().

◆ AssignSectionMesh()

void CSection::AssignSectionMesh ( const CSectionMesh SectionMesh)
inherited

◆ CalcTValues()

void CSectionPolygon::CalcTValues ( )
protected

Assign t value as proportion of distance around perimeter for each point.

Definition at line 155 of file SectionPolygon.cpp.

References TexGen::GetLength(), m_PolygonPoints, and m_t.

Referenced by CSectionPolygon().

◆ Copy()

CSection * TexGen::CSectionPolygon::Copy ( ) const
inlinevirtual

Create a copy of the derived section and return a pointer to the newly created instance.

Implements TexGen::CSection.

Definition at line 43 of file SectionPolygon.h.

◆ CreateEquiSpacedSection()

bool CSection::CreateEquiSpacedSection ( int  iNumPoints) const
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().

◆ CreateSection() [1/3]

void CSectionPolygon::CreateSection ( ) const
protected

Create section with edge points same as polygon points.

Definition at line 181 of file SectionPolygon.cpp.

References TexGen::CSection::m_bEquiSpaced, TexGen::CSection::m_EdgePoints, and m_PolygonPoints.

Referenced by CSectionPolygon().

◆ CreateSection() [2/3]

void CSection::CreateSection ( int  iNumPoints) const
protectedinherited

Create a section with given number of points on the perimeter.

m_EdgePoints will be populated with given number of points

Parameters
iNumPointsNumber 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.

◆ CreateSection() [3/3]

CObjectContainer< CSection > CSection::CreateSection ( TiXmlElement &  Element)
staticinherited

◆ GetArea()

double CSection::GetArea ( const vector< XY > &  Section)
staticinherited

◆ GetBaseType()

virtual string TexGen::CSection::GetBaseType ( ) const
inlinevirtualinherited

Reimplemented in TexGen::CSectionRotated.

Definition at line 85 of file Section.h.

◆ GetCircumference()

double CSection::GetCircumference ( const vector< XY > &  Section)
staticinherited

Get the circumference of a section.

Definition at line 273 of file Section.cpp.

References TexGen::GetLength().

Referenced by TexGen::CYarn::SetResolution().

◆ GetDefaultName()

string CSectionPolygon::GetDefaultName ( ) const
virtual

Get the default name to assign to a section.

Implements TexGen::CSection.

Definition at line 131 of file SectionPolygon.cpp.

References m_PolygonPoints, and TexGen::stringify().

◆ GetMesh()

const CMesh & CSection::GetMesh ( int  iNumPoints,
bool  bEquiSpaced = true 
) const
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().

◆ GetPoint()

XY CSectionPolygon::GetPoint ( double  t) const
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 110 of file SectionPolygon.cpp.

References m_PolygonPoints, and m_t.

◆ GetPoints()

const vector< XY > & CSection::GetPoints ( int  iNumPoints,
bool  bEquiSpaced = false 
) const
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.

Parameters
iNumPointsNumber of points the section is made up of
bEquiSpacedIf 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().

◆ GetSectionMeshLayers()

int CSection::GetSectionMeshLayers ( )
inherited

◆ GetType()

string TexGen::CSectionPolygon::GetType ( ) const
inlinevirtual

Derived class should return the class name.

Implements TexGen::CSection.

Definition at line 47 of file SectionPolygon.h.

Referenced by operator==().

◆ operator==()

bool CSectionPolygon::operator== ( const CSection CompareMe) const
virtual

Overloaded equality operator to determine if two sections are the same.

Implements TexGen::CSection.

Definition at line 66 of file SectionPolygon.cpp.

References GetType(), TexGen::CSection::GetType(), and m_PolygonPoints.

◆ PopulateTiXmlElement()

void CSectionPolygon::PopulateTiXmlElement ( TiXmlElement &  Element,
OUTPUT_TYPE  OutputType 
) const
virtual

Used for saving data to XML.

Reimplemented from TexGen::CSection.

Definition at line 86 of file SectionPolygon.cpp.

References m_bRetainPoints, m_PolygonPoints, TexGen::CSection::PopulateTiXmlElement(), and TexGen::stringify().

◆ Scale() [1/2]

void CSectionPolygon::Scale ( double  dScale)

Change the scale of the section by multiplying each coordinate value by a scalar.

Definition at line 146 of file SectionPolygon.cpp.

References m_PolygonPoints.

◆ Scale() [2/2]

void CSectionPolygon::Scale ( XY  Scale)

Change the scale of the section by multiplying each coordinate component by the component given by this XY struct.

Definition at line 136 of file SectionPolygon.cpp.

References m_PolygonPoints, and Scale().

Referenced by Scale().

◆ SetSectionMeshLayers()

void CSection::SetSectionMeshLayers ( int  iNum)
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().

Member Data Documentation

◆ m_bEquiSpaced

bool TexGen::CSection::m_bEquiSpaced
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(), CreateSection(), TexGen::CSection::CreateSection(), TexGen::CSection::CSection(), TexGen::CSection::GetPoints(), and TexGen::CSection::PopulateTiXmlElement().

◆ m_bRetainPoints

bool TexGen::CSectionPolygon::m_bRetainPoints
protected

Whether or not to use the polygon points to define the section edge points.

Definition at line 70 of file SectionPolygon.h.

Referenced by CSectionPolygon(), and PopulateTiXmlElement().

◆ m_EdgePoints

vector<XY> TexGen::CSection::m_EdgePoints
mutableprotectedinherited

◆ m_PolygonPoints

vector<XY> TexGen::CSectionPolygon::m_PolygonPoints
protected

◆ m_pSectionMesh

CObjectContainer<CSectionMesh> TexGen::CSection::m_pSectionMesh
protectedinherited

◆ m_t

vector<double> TexGen::CSectionPolygon::m_t
protected

The proportion of the distance around the total perimeter range from 0 to 1 for each point.

Definition at line 67 of file SectionPolygon.h.

Referenced by CalcTValues(), and GetPoint().


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