pointvec/sources/scripts/path_line.js
Devine Lu Linvega 0db55f4ba4 Version 1?
2017-11-05 17:33:04 +13:00

35 lines
593 B
JavaScript

function Path_Line(from,to,end = null)
{
this.from = from;
this.to = to;
this.end = end;
this.to_segment = function(prev)
{
var html = ""
if(!prev){
html += "M"+this.from+" ";
}
else if(prev){
if(prev.end){
if(!prev.end.is_equal(this.from)){
html += "M"+this.from+" ";
}
}
else if(prev.to){
if(!prev.to.is_equal(this.from)){
html += "M"+this.from+" ";
}
}
}
html += "L"+this.to+" "
if(this.end){
html += "L"+this.end+" "
}
return html
}
}