mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-24 21:41:33 +02:00
18 lines
384 B
OpenSCAD
18 lines
384 B
OpenSCAD
/**
|
|
* polytransversals.scad
|
|
*
|
|
* @copyright Justin Lin, 2017
|
|
* @license https://opensource.org/licenses/lgpl-3.0.html
|
|
*
|
|
* @see https://openhome.cc/eGossip/OpenSCAD/lib-polytransversals.html
|
|
*
|
|
**/
|
|
|
|
include <__private__/__reverse.scad>;
|
|
include <__private__/__polytransversals.scad>;
|
|
|
|
module polytransversals(transversals) {
|
|
polygon(
|
|
__polytransversals(transversals)
|
|
);
|
|
} |