TexGen
ShearedVoxelMesh.h
Go to the documentation of this file.
1/*=============================================================================
2TexGen: Geometric textile modeller.
3Copyright (C) 2012 Louise Brown
4
5This program is free software; you can redistribute it and/or
6modify it under the terms of the GNU General Public License
7as published by the Free Software Foundation; either version 2
8of the License, or (at your option) any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with this program; if not, write to the Free Software
17Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18=============================================================================*/
19
20#pragma once
21#include "VoxelMesh.h"
22
23namespace TexGen
24{
25 using namespace std;
26
27 class CTextile;
28
31 {
32 public:
33 CShearedVoxelMesh(string Type = "CShearedPeriodicBoundaries");
34 virtual ~CShearedVoxelMesh(void);
35
36 protected:
38 bool CalculateVoxelSizes(CTextile &Textile);
39
41 void OutputNodes(ostream &Output, CTextile &Textile, int Filetype = INP_EXPORT);
42
43 XY m_ShearedVoxSize[3];
45
46 };
47}; // namespace TexGen
#define CLASS_DECLSPEC
Definition: Misc.h:35
Class used to generate voxel mesh for output to ABAQUS.
Represents a textile cell containing yarns.
Definition: Textile.h:39
Class used to generate voxel mesh for output to ABAQUS.
Definition: VoxelMesh.h:35
Namespace containing a series of customised math operations not found in the standard c++ library.
@ INP_EXPORT
Definition: Misc.h:113
Struct for representing points in 2D space.
Definition: mymath.h:103
Struct for representing points in 3D space.
Definition: mymath.h:56