Returns a point with Math.abs applied to x,y and z if present.
Points.abs({ x:1, y:1 }); // { x: 1, y: 1 }Points.abs({ x:-1, y:1 }); // { x: 1, y: 1 }Points.abs({ x:-1, y:-1 }); // { x: 1, y: 1 } Copy
Points.abs({ x:1, y:1 }); // { x: 1, y: 1 }Points.abs({ x:-1, y:1 }); // { x: 1, y: 1 }Points.abs({ x:-1, y:-1 }); // { x: 1, y: 1 }
Returns a point with Math.abs applied to x,y and z if present.
Param: pt
Returns