jsketcher/web/app/brep/operations/affine.js
2017-01-09 19:14:35 -08:00

6 lines
122 B
JavaScript

export function transform(shell, matrix) {
for (let vertex of shell.vertices) {
matrix._apply(vertex.point);
}
}