File: SASEdge.C

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 239,848 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 93
file content (173 lines) | stat: -rw-r--r-- 2,925 bytes parent folder | download | duplicates (10)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#include <BALL/STRUCTURE/SASEdge.h>
#include <BALL/STRUCTURE/SASFace.h>
#include <BALL/STRUCTURE/SASVertex.h>
#include <BALL/MATHS/angle.h>
#include <BALL/MATHS/circle3.h>


namespace BALL
{

	SASEdge::SASEdge()
		
		: GraphEdge< SASVertex,SASEdge,SASFace >(),
			circle_(),
			angle_()
	{
	}


	SASEdge::SASEdge(const SASEdge& sasedge, bool deep)
		
		: GraphEdge< SASVertex,SASEdge,SASFace >(sasedge,deep),
			circle_(sasedge.circle_),
			angle_(sasedge.angle_)
	{
	}


	SASEdge::SASEdge(SASVertex* vertex0,
			SASVertex* vertex1,
			SASFace* face0,
			SASFace* face1,
			const TCircle3<double>& circle,
			const TAngle<double>& angle,
			Index index)
		
		: GraphEdge< SASVertex,SASEdge,SASFace >
				(vertex0,vertex1,face0,face1,index),
			circle_(circle),
			angle_(angle)
	{
	}


	SASEdge::~SASEdge()
		
	{
	}


	void SASEdge::set(const SASEdge& sasedge, bool deep)
		
	{
		if (this != &sasedge)
		{
			GraphEdge< SASVertex,SASEdge,SASFace >::set(sasedge,deep);
			circle_.set(sasedge.circle_);
			angle_.set(sasedge.angle_);
		}
	}


	SASEdge& SASEdge::operator = (const SASEdge& sasedge)
		
	{
		if (this != &sasedge)
		{
			GraphEdge< SASVertex,SASEdge,SASFace >::operator = (sasedge);
			circle_.set(sasedge.circle_);
			angle_.set(sasedge.angle_);
		}
		return *this;
	}


	void SASEdge::set
			(SASVertex* vertex0,
			 SASVertex* vertex1,
			 SASFace* face0,
			 SASFace* face1,
			 const TCircle3<double>& circle,
			 const TAngle<double>& angle,
			 Index index)
		
	{
		GraphEdge< SASVertex,SASEdge,SASFace >::set
				(vertex0,vertex1,face0,face1,index);
		circle_.set(circle);
		angle_.set(angle);
	}


	void SASEdge::setCircle(const TCircle3<double>& circle)
		
	{
		circle_ = circle;
	}


	TCircle3<double> SASEdge::getCircle() const
		
	{
		return circle_;
	}


	void SASEdge::setAngle(const TAngle<double>& angle)
		
	{
		angle_ = angle;
	}


	TAngle<double> SASEdge::getAngle() const
		
	{
		return angle_;
	}


	bool SASEdge::operator == (const SASEdge&) const
		
	{
		return true;
	}


	bool SASEdge::operator != (const SASEdge&) const
		
	{
		return false;
	}


	bool SASEdge::operator *= (const SASEdge&) const
		
	{
		return true;
	}


	bool SASEdge::isFree() const
		
	{
		return (vertex_[0] == NULL);
	}


	std::ostream& operator << (std::ostream& s, const SASEdge& sasedge)
	{
		return (s << "SASEDGE" << sasedge.getIndex() << "(["
							<< ((sasedge.getVertex(0) == NULL)
											? -2
											: sasedge.getVertex(0)->getIndex()) << ' '
							<< ((sasedge.getVertex(1) == NULL)
											? -2
											: sasedge.getVertex(1)->getIndex()) << "] ["
							<< ((sasedge.getFace(0) == NULL)
											? -2
											: sasedge.getFace(0)->getIndex()) << ' '
							<< ((sasedge.getFace(1) == NULL)
											? -2
											: sasedge.getFace(1)->getIndex()) << "] "
							<< sasedge.getCircle()
						);
	}


}	// namespave BALL