UNPKG
fivem-js
Version:
latest (1.5.2)
1.5.2
1.5.1
1.5.0
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.7-0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Javascript/Typescript wrapper for the FiveM natives
d0p3t.nl
d0p3t/fivem-js
fivem-js
/
lib
/
utils
/
PointF.js
15 lines
(14 loc)
•
314 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
PointF
=
void
0
;
class
PointF
{
constructor
(
x, y, z
) {
this
.
x
= x;
this
.
y
= y;
this
.
z
= z; }
static
empty
(
) {
return
new
PointF
(
0
,
0
,
0
); } }
exports
.
PointF
=
PointF
;