UNPKG
potrace
Version:
latest (2.1.8)
2.1.8
2.1.6
2.1.5
2.1.4
2.1.2
2.1.1
2.0.1
2.0.0
1.1.0
1.0.0
Potrace in Javascript, for NodeJS
github.com/tooolbox/node-potrace
tooolbox/node-potrace
potrace
/
lib
/
types
/
Sum.js
11 lines
(9 loc)
•
148 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
function
Sum
(
x, y, xy, x2, y2
) {
this
.
x
= x;
this
.
y
= y;
this
.
xy
= xy;
this
.
x2
= x2;
this
.
y2
= y2; }
module
.
exports
=
Sum
;