blob: 4b4f4106786a9a58fc21626495a806c0697b4e05 (
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
|
// Copyright 2006-2007 Nanorex, Inc. See LICENSE file for details.
/*
Name: couple.cpp
Author: Oleksandr Shevchenko
Description: coordinate 2D point management class
*/
#include "couple.h"
//----------------------------------------------------------------------------
// Constructor
//
// couple from point constructor
//
Couple::Couple(
int i,
double x,
double y,
double z)
{
switch (i)
{
case 0:
mX = y;
mY = z;
break;
case 1:
mX = x;
mY = z;
break;
case 2:
mX = x;
mY = y;
break;
}
}
//----------------------------------------------------------------------------
// Len()
//
// vector length
//
double Couple::Len() const
{
return sqrt(X()*X() + Y()*Y());
}
//----------------------------------------------------------------------------
// Len2()
//
// square of vector length
//
double Couple::Len2() const
{
return (X()*X() + Y()*Y());
}
//----------------------------------------------------------------------------
// Normalize()
//
// normalize vector to unit length
//
Couple & Couple::Normalize()
{
double length= Len();
*this /= length;
return *this;
}
//----------------------------------------------------------------------------
// Normalize()
//
// normalizes vector to unit length
//
Couple & Couple::Normalize(
double &length)
{
length = Len();
*this /= length;
return *this;
}
|