mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 12:53:52 +01:00
6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
|
|
export function transform(shell, matrix) {
|
|
for (let vertex of shell.vertices) {
|
|
matrix._apply(vertex.point);
|
|
}
|
|
}
|