--
You received this message because you are subscribed to the Google Groups "Paper.js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to paperjs+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "Paper.js" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/paperjs/YIpLMZqhWDs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to paperjs+u...@googlegroups.com.
Path.prototype.mirror = function(orientation) {
var axis = {
'horizontal': {
'x': -1,
'y': 1
},
'vertical': {
'x': 1,
'y': -1
}
}
return this.scale(axis[orientation].x, axis[orientation].y);
};
myPath.mirror('horizontal');