1 /*******************************************************************************
2 Copyright (c) 2012, Jonathan Hiller
3 
4 This file is part of the AMF Tools suite. http://amf.wikispaces.com/
5 AMF Tools 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.
6 AMF Tools 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.
7 See <http://www.opensource.org/licenses/lgpl-3.0.html> for license details.
8 *******************************************************************************/
9 
10 #ifndef NEDGE_H
11 #define NEDGE_H
12 
13 #include <string>
14 
15 class CXmlStreamWrite;
16 class CXmlStreamRead;
17 
18 class nAmf;
19 
20 class nEdge
21 {
22 public:
23 	nEdge(void);
24 	~nEdge(void);
nEdge(const nEdge & In)25 	nEdge(const nEdge& In) {*this = In;} //copy constructor
26 	nEdge& operator=(const nEdge& In); //overload Equals
27 	void Clear(void); //clears all data
28 
29 	//XML read/write
30 	bool WriteXML(CXmlStreamWrite* pXML, std::string* pMessage = 0);
31 	bool ReadXML(CXmlStreamRead* pXML, nAmf* pAmf, bool StrictLoad=true, std::string* pMessage = 0);
32 	bool CheckValid(nAmf* pAmf, bool FixNode=true, std::string* pMessage = 0);
33 
34 	int v1, v2;
35 	double dx1, dy1, dz1, dx2, dy2, dz2;
36 
SetDirectionVectors(double Dx1In,double Dy1In,double Dz1In,double Dx2In,double Dy2In,double Dz2In)37 	void SetDirectionVectors(double Dx1In, double Dy1In, double Dz1In, double Dx2In, double Dy2In, double Dz2In){dx1=Dx1In; dy1=Dy1In; dz1=Dz1In; dx2=Dx2In; dy2=Dy2In; dz2=Dz2In;}
38 };
39 
40 #endif
41