summaryrefslogtreecommitdiff
path: root/CSXCAD/src/CSPrimPoint.cpp
blob: 8ed258d9136589359af77214b03001b642680c76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
*	Copyright (C) 2008-2012 Thorsten Liebig (Thorsten.Liebig@gmx.de)
*
*	This program is free software: you can redistribute it and/or modify
*	it under the terms of the GNU Lesser General Public License as published
*	by the Free Software Foundation, either version 3 of the License, or
*	(at your option) any later version.
*
*	This program is distributed in the hope that it will be useful,
*	but WITHOUT ANY WARRANTY; without even the implied warranty of
*	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*	GNU Lesser General Public License for more details.
*
*	You should have received a copy of the GNU Lesser General Public License
*	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <sstream>
#include <iostream>
#include <limits>
#include "tinyxml.h"
#include "stdint.h"

#include "CSPrimPoint.h"
#include "CSProperties.h"
#include "CSUseful.h"

CSPrimPoint::CSPrimPoint(unsigned int ID, ParameterSet* paraSet, CSProperties* prop) : CSPrimitives(ID,paraSet,prop)
{
	Type = POINT;
	m_Coords.SetParameterSet(paraSet);
	PrimTypeName = "Point";
}

CSPrimPoint::CSPrimPoint(CSPrimPoint* primPoint, CSProperties *prop) : CSPrimitives(primPoint,prop)
{
	Type = POINT;
	m_Coords.Copy(&primPoint->m_Coords);
	PrimTypeName = "Point";
}

CSPrimPoint::CSPrimPoint(ParameterSet* paraSet, CSProperties* prop) : CSPrimitives(paraSet,prop)
{
	Type = POINT;
	m_Coords.SetParameterSet(paraSet);
	PrimTypeName = "Point";
}

CSPrimPoint::~CSPrimPoint()
{
}

void CSPrimPoint::SetCoord(int index, double val)
{
	m_Coords.SetValue(index,val);
}

void CSPrimPoint::SetCoord(int index, const std::string val)
{
	m_Coords.SetValue(index,val);
}

double CSPrimPoint::GetCoord(int index)
{
	return m_Coords.GetCoordValue(index,m_MeshType);
}

ParameterScalar* CSPrimPoint::GetCoordPS(int index)
{
	return m_Coords.GetCoordPS(index);
}

bool CSPrimPoint::GetBoundBox(double dBoundBox[6], bool PreserveOrientation)
{
	UNUSED(PreserveOrientation); //has no orientation or preserved anyways
	const double *coord = m_Coords.GetCoords(m_MeshType);
	for (int i=0; i<3; i++)
	{
		dBoundBox[2*i]   = coord[i];
		dBoundBox[2*i+1] = coord[i];
	}
	m_Dimension=0;
	m_BoundBox_CoordSys = m_PrimCoordSystem;
	return true;
}

bool CSPrimPoint::IsInside(const double* /*Coord*/, double /*tol*/)
{
	// this is a 0D-object, you can never be inside...
	return false;
}


bool CSPrimPoint::Update(std::string *ErrStr)
{
	bool bOK=m_Coords.Evaluate(ErrStr);
	if (bOK==false)
	{
		std::stringstream stream;
		stream << std::endl << "Error in Point (ID: " << uiID << "): ";
		ErrStr->append(stream.str());
	}
	m_Coords.SetCoordinateSystem(m_PrimCoordSystem, m_MeshType);
	//update local bounding box
	m_BoundBoxValid = GetBoundBox(m_BoundBox);
	return bOK;
}

bool CSPrimPoint::Write2XML(TiXmlElement &elem, bool parameterised)
{
	CSPrimitives::Write2XML(elem,parameterised);
	return m_Coords.Write2XML(&elem,parameterised);
}

bool CSPrimPoint::ReadFromXML(TiXmlNode &root)
{
	if (!CSPrimitives::ReadFromXML(root)) return false;
	return m_Coords.ReadFromXML(dynamic_cast<TiXmlElement*>(&root));
}


void CSPrimPoint::ShowPrimitiveStatus(std::ostream& stream)
{
	CSPrimitives::ShowPrimitiveStatus(stream);
	stream << "  Coordinate: " << m_Coords.GetValueString(0) << "," << m_Coords.GetValueString(1) << "," << m_Coords.GetValueString(2) << std::endl;
}