14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
![]() |
export default part => {
|
||
|
let { Point, points, macro } = part.shorthand();
|
||
|
|
||
|
points.grainlineFrom = new Point(10, 10);
|
||
|
points.grainlineTo = new Point(100, 10);
|
||
|
|
||
|
macro("grainline", {
|
||
|
from: points.grainlineFrom,
|
||
|
to: points.grainlineTo
|
||
|
});
|
||
|
|
||
|
return part;
|
||
|
};
|