| 467 | } |
| 468 | |
| 469 | Shape TransformShape( // return transformed shape |
| 470 | const Shape& shape, // in |
| 471 | double x0, double y0, double z0, // in |
| 472 | double x1, double y1, double z1) // in |
| 473 | { |
| 474 | Shape outshape(shape.clone()); |
| 475 | TransformShapeInPlace(outshape, x0, y0, z0, x1, y1, z1); |
| 476 | return outshape; |
| 477 | } |
| 478 | |
| 479 | Shape TransformShape( // return transformed shape, affine transform |
| 480 | const Shape& shape, // in |
no test coverage detected