Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
node-drone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
15김건우
node-drone
Commits
40efd05d
Commit
40efd05d
authored
Jun 08, 2019
by
16김민성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify vector class; no use prototype
parent
36d0422c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
49 deletions
+37
-49
possys.js
public/possys.js
+37
-49
No files found.
public/possys.js
View file @
40efd05d
...
...
@@ -15,84 +15,81 @@ class Vector {
this
.
y
=
y
||
0
;
this
.
z
=
z
||
0
;
}
}
Vector
.
prototype
=
{
negative
:
function
()
{
negative
()
{
return
new
Vector
(
-
this
.
x
,
-
this
.
y
,
-
this
.
z
);
}
,
add
:
function
(
v
)
{
}
add
(
v
)
{
if
(
v
instanceof
Vector
)
return
new
Vector
(
this
.
x
+
v
.
x
,
this
.
y
+
v
.
y
,
this
.
z
+
v
.
z
);
else
return
new
Vector
(
this
.
x
+
v
,
this
.
y
+
v
,
this
.
z
+
v
);
}
,
subtract
:
function
(
v
)
{
}
subtract
(
v
)
{
if
(
v
instanceof
Vector
)
return
new
Vector
(
this
.
x
-
v
.
x
,
this
.
y
-
v
.
y
,
this
.
z
-
v
.
z
);
else
return
new
Vector
(
this
.
x
-
v
,
this
.
y
-
v
,
this
.
z
-
v
);
}
,
multiply
:
function
(
v
)
{
}
multiply
(
v
)
{
if
(
v
instanceof
Vector
)
return
new
Vector
(
this
.
x
*
v
.
x
,
this
.
y
*
v
.
y
,
this
.
z
*
v
.
z
);
else
return
new
Vector
(
this
.
x
*
v
,
this
.
y
*
v
,
this
.
z
*
v
);
}
,
divide
:
function
(
v
)
{
}
divide
(
v
)
{
if
(
v
instanceof
Vector
)
return
new
Vector
(
this
.
x
/
v
.
x
,
this
.
y
/
v
.
y
,
this
.
z
/
v
.
z
);
else
return
new
Vector
(
this
.
x
/
v
,
this
.
y
/
v
,
this
.
z
/
v
);
}
,
equals
:
function
(
v
)
{
}
equals
(
v
)
{
return
this
.
x
==
v
.
x
&&
this
.
y
==
v
.
y
&&
this
.
z
==
v
.
z
;
}
,
dot
:
function
(
v
)
{
}
dot
(
v
)
{
return
this
.
x
*
v
.
x
+
this
.
y
*
v
.
y
+
this
.
z
*
v
.
z
;
}
,
cross
:
function
(
v
)
{
}
cross
(
v
)
{
return
new
Vector
(
this
.
y
*
v
.
z
-
this
.
z
*
v
.
y
,
this
.
z
*
v
.
x
-
this
.
x
*
v
.
z
,
this
.
x
*
v
.
y
-
this
.
y
*
v
.
x
);
}
,
length
:
function
()
{
}
length
()
{
return
Math
.
sqrt
(
this
.
dot
(
this
));
}
,
unit
:
function
()
{
}
unit
()
{
return
this
.
divide
(
this
.
length
());
}
,
min
:
function
()
{
}
min
()
{
return
Math
.
min
(
Math
.
min
(
this
.
x
,
this
.
y
),
this
.
z
);
}
,
max
:
function
()
{
}
max
()
{
return
Math
.
max
(
Math
.
max
(
this
.
x
,
this
.
y
),
this
.
z
);
}
,
toAngles
:
function
()
{
}
toAngles
()
{
return
{
theta
:
Math
.
atan2
(
this
.
z
,
this
.
x
),
phi
:
Math
.
asin
(
this
.
y
/
this
.
length
())
};
}
,
angleTo
:
function
(
a
)
{
}
angleTo
(
a
)
{
return
Math
.
acos
(
this
.
dot
(
a
)
/
(
this
.
length
()
*
a
.
length
()));
}
,
toArray
:
function
(
n
)
{
}
toArray
(
n
)
{
return
[
this
.
x
,
this
.
y
,
this
.
z
].
slice
(
0
,
n
||
3
);
}
,
clone
:
function
()
{
}
clone
()
{
return
new
Vector
(
this
.
x
,
this
.
y
,
this
.
z
);
}
,
init
:
function
(
x
,
y
,
z
)
{
}
init
(
x
,
y
,
z
)
{
this
.
x
=
x
;
this
.
y
=
y
;
this
.
z
=
z
;
return
this
;
}
}
;
}
class
UserInfo
{
constructor
()
{
this
.
pos
=
new
Vector
(
80
,
0
,
0
);
this
.
dist
Hand
=
80
;
this
.
dist
=
80
;
}
}
class
DroneInfo
{
constructor
()
{
this
.
dist
Drone
=
500
;
this
.
dist
=
500
;
this
.
pos
=
new
Vector
(
500
,
0
,
0
);
// Current position of the drone. It is changed only if a real position of dron is changed.
this
.
pitch
=
0
;
this
.
roll
=
0
;
...
...
@@ -100,19 +97,10 @@ class DroneInfo {
}
}
class
DroneDest
{
constructor
()
{
this
.
distDrone
=
500
;
this
.
pos
=
new
Vector
(
500
,
0
,
0
);
}
}
var
origin
=
new
Vector
(
0
,
0
,
0
);
function
handToDroneDelta
(
_nextHand
)
{
var
delta
=
_nextHand
-
origin
;
delta
=
delta
.
multiply
()
return
posDrone
.
add
(
delta
);
}
function
\ No newline at end of file
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment