TexGen
PropertiesYarn.cpp
Go to the documentation of this file.
1/*=============================================================================
2TexGen: Geometric textile modeller.
3Copyright (C) 2006 Martin Sherburn
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#include "PrecompiledHeaders.h"
21#include "PropertiesYarn.h"
22using namespace TexGen;
23
24
25CPropertiesYarn::CPropertiesYarn()
26{
27}
28
30: CProperties(Element)
31{
32}
33
35{
36}
37
38void CPropertiesYarn::PopulateTiXmlElement(TiXmlElement &Element, OUTPUT_TYPE OutputType)
39{
40 CProperties::PopulateTiXmlElement(Element, OutputType);
41}
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Class to store properties related to a textile and/or yarn.
Definition: Properties.h:102
virtual void PopulateTiXmlElement(TiXmlElement &Element, OUTPUT_TYPE OutputType)
Used for saving data to XML.
Definition: Properties.cpp:86
void PopulateTiXmlElement(TiXmlElement &Element, OUTPUT_TYPE OutputType)
Used for saving data to XML.
Namespace containing a series of customised math operations not found in the standard c++ library.
OUTPUT_TYPE
Definition: Misc.h:105