Numworks Epsilon
1.4.1
Graphing Calculator Operating System
Main Page
Related Pages
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
Enumerations
Enumerator
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Typedefs
+
Enumerations
a
b
c
d
e
f
l
m
o
p
q
r
s
t
w
Enumerator
+
Related Functions
a
b
c
d
f
g
h
i
l
m
n
o
p
r
s
t
u
w
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
+
Typedefs
a
b
c
d
e
f
g
i
k
m
n
q
r
s
u
v
Enumerations
+
Enumerator
i
l
m
p
r
s
u
+
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
curve_view_cursor.cpp
Go to the documentation of this file.
1
#include "
curve_view_cursor.h
"
2
#include <cmath>
3
4
namespace
Shared
{
5
6
CurveViewCursor::CurveViewCursor
() :
7
m_x(
NAN
),
8
m_y(
NAN
)
9
{
10
}
11
12
double
CurveViewCursor::x
() {
13
return
m_x;
14
}
15
16
double
CurveViewCursor::y
() {
17
return
m_y;
18
}
19
20
void
CurveViewCursor::moveTo
(
double
x,
double
y) {
21
m_x = clipped(
x
,
false
);
22
m_y = clipped(
y
,
true
);
23
}
24
25
double
CurveViewCursor::clipped(
double
x,
bool
canBeInfinite) {
26
double
maxValue = canBeInfinite ?
INFINITY
: k_maxFloat;
27
double
clippedX =
x
> k_maxFloat ? maxValue :
x
;
28
clippedX = clippedX < - k_maxFloat ? -maxValue : clippedX;
29
return
clippedX;
30
}
31
32
}
Shared
Definition:
banner_view.cpp:5
NAN
#define NAN
Definition:
math.h:30
Shared::CurveViewCursor::y
double y()
Definition:
curve_view_cursor.cpp:16
Shared::CurveViewCursor::x
double x()
Definition:
curve_view_cursor.cpp:12
curve_view_cursor.h
Shared::CurveViewCursor::moveTo
void moveTo(double x, double y)
Definition:
curve_view_cursor.cpp:20
INFINITY
#define INFINITY
Definition:
math.h:29
Shared::CurveViewCursor::CurveViewCursor
CurveViewCursor()
Definition:
curve_view_cursor.cpp:6
epsilon
apps
shared
curve_view_cursor.cpp
Generated by
1.8.14