42 lines
951 B
JavaScript
42 lines
951 B
JavaScript
function Path_Bezier(from,to,end)
|
|
{
|
|
this.__serialized_name__ = "Path_Bezier";
|
|
this.name = "bezier";
|
|
|
|
this.from = from;
|
|
this.to = to;
|
|
this.end = end;
|
|
|
|
this.to_segment = function(prev)
|
|
{
|
|
var html = ""
|
|
if(!this.end){ return ""; }
|
|
|
|
if(!prev || (!prev.to && !prev.end)){
|
|
html += "M"+this.from.scale(dotgrid.scale)+" ";
|
|
}
|
|
else if(prev){
|
|
if(prev.end){
|
|
if(!prev.end.is_equal(this.from)){
|
|
html += "M"+this.from.scale(dotgrid.scale)+" ";
|
|
}
|
|
}
|
|
else if(prev.to){
|
|
if(!prev.to.is_equal(this.from)){
|
|
html += "M"+this.from.scale(dotgrid.scale)+" ";
|
|
}
|
|
}
|
|
}
|
|
|
|
return html += "Q"+this.to.scale(dotgrid.scale)+" "+this.end.scale(dotgrid.scale)+" "
|
|
}
|
|
|
|
this.handles = function()
|
|
{
|
|
var a = [];
|
|
if(this.from){ a.push(this.from); }
|
|
if(this.to){ a.push(this.to); }
|
|
if(this.end){ a.push(this.end); }
|
|
return a;
|
|
}
|
|
} |