You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
export default function(node, x0, y0, x1, y1) {
|
|
|
|
this.node = node;
|
|
|
|
this.x0 = x0;
|
|
|
|
this.y0 = y0;
|
|
|
|
this.x1 = x1;
|
|
|
|
this.y1 = y1;
|
|
|
|
}
|