const OpenSCADFunction = require('./api/OpenSCADFunction');
30 | const ThreeDModule = require('./api/ThreeDModule');
31 | const TwoDModule = require('./api/TwoDModule');
32 | const Types = require('./types/Types');
33 |
34 | /**
35 | * @typedef {object} UnitTestSCAD This is the top level object exposed when requiring UnitTestSCAD into a NodeJS script.
36 | * @property {Function} Function Exposes the {@link Function} class for use. This should be used when testing an OpenSCAD function.
37 | * @property {ThreeDModule} ThreeDModule Exposes the {@link ThreeDModule} class for use. This should be used when testing an OpenSCAD module which produces a 3D model.
38 | * @property {TwoDModule} TwoDModule Exposes the {@link TwoDModule} class for use. This should be used when testing an OpenSCAD module which produces a 2D model.
39 | * @property {Types} Types Exposes the {@link Types} object for use. This should be used when performing assertions on a {@link Function}.
40 | */
41 | module.exports = {
42 | Function: OpenSCADFunction,
43 | ThreeDModule,
44 | TwoDModule,
45 | Types
46 | };
/** @typedef {string} OpenSCADBoolean Represents an OpenSCAD boolean. Equal to 'boolean'. */
30 | /** @typedef {string} OpenSCADInfinity Represents Infinity in OpenSCAD. Equal to 'inf'. */
31 | /** @typedef {string} OpenSCADNaN Represents NaN (Not a Number) in OpenSCAD. Equal to 'nan'. */
32 | /** @typedef {string} OpenSCADNumber Represents an OpenSCAD number. Equal to 'number'. */
33 | /** @typedef {string} OpenSCADRange Represents an OpenSCAD range. Equal to 'range'. */
34 | /** @typedef {string} OpenSCADString Represents an OpenSCAD string. Equal to 'string'. */
35 | /** @typedef {string} OpenSCADUndefined Represents undef (undefined) in OpenSCAD. Equal to 'undefined'. */
36 | /** @typedef {string} OpenSCADVector Represents an OpenSCAD vector. Equal to 'vector'. */
37 |
38 | /**
39 | * @typedef {object} Types A collection of the available OpenSCAD types.
40 | * @property {OpenSCADBoolean} BOOLEAN See {@link OpenSCADBoolean}.
41 | * @property {OpenSCADInfinity} INF See {@link OpenSCADInfinity}.
42 | * @property {OpenSCADNaN} NAN See {@link OpenSCADNaN}.
43 | * @property {OpenSCADNumber} NUMBER See {@link OpenSCADNumber}.
44 | * @property {OpenSCADRange} RANGE See {@link OpenSCADRange}.
45 | * @property {OpenSCADString} STRING See {@link OpenSCADString}.
46 | * @property {OpenSCADUndefined} UNDEF See {@link OpenSCADUndefined}.
47 | * @property {OpenSCADVector} VECTOR See {@link OpenSCADVector}.
48 | */
49 | module.exports = {
50 | BOOLEAN: 'boolean',
51 | INF: 'inf',
52 | NAN: 'nan',
53 | NUMBER: 'number',
54 | RANGE: 'range',
55 | STRING: 'string',
56 | UNDEF: 'undef',
57 | VECTOR: 'vector',
58 | };
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
70 |
71 |
72 |
73 |
76 |
77 |
78 |
79 |
80 |
81 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # UnitTestSCAD
2 |
3 |  [](https://www.npmjs.com/package/unittestscad) [](https://codeclimate.com/github/HopefulLlama/UnitTestSCAD) [](https://gitter.im/UnitTestSCAD/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4 |
5 | 
6 |
7 | # Unit Testing for OpenSCAD
8 |
9 | UnitTestSCAD brings forth unit testing capabilities to OpenSCAD. Unit testing enables you to check for regressions, accuracy and robustness of code in a fast, repeatable manner. Speed of development increases as unit tests will worry about your regressions, and allow you to plow ahead with your vision.
10 |
11 | # Contents
12 | - [Getting Started](#getting-started)
13 | - [Usage](#usage)
14 | - [API Reference](#api-reference)
15 |
16 | # Getting Started
17 | ## Installing OpenSCAD
18 | UnitTestSCAD has a very strong dependency on OpenSCAD. This is because UnitTestSCAD uses some of the features from OpenSCAD to perform some of its underlying testing.
19 |
20 | Simply start by installing OpenSCAD if you have not done so already:
21 |
22 | [OpenSCAD Home](http://www.openscad.org/)
23 |
24 | ## Adding OpenSCAD to PATH
25 | In order for UnitTestSCAD to take advantage of OpenSCAD's features, the folder which contains the OpenSCAD files must be added to the PATH environment variable on your machine.
26 |
27 | While the path will generally be the same on all platforms (Windows, Linux, Mac), the file they point to specifically is different. If you have moved the respective file manually, you will need to point at:
28 | - Windows: `openscad.com`
29 | - Linux: `openscad.exe`
30 | - Mac: `openscad.exe`
31 |
32 | These files will be in the location where you installed OpenSCAD. For example, by default on Windows: `C:/Program Files/OpenSCAD`.
33 |
34 | Note: **The path to the folder containing the files is to be added to the PATH environment variable.**
35 |
36 | ## Installing NodeJS and NPM
37 | UnitTestSCAD is powered by NodeJS and distributed by NPM. They are distributed together and complement each other well.
38 | Follow the installation from the NodeJS website if you do not have these installed:
39 |
40 | [NodeJS Home](https://nodejs.org/en/)
41 |
42 | ## Installing UnitTestSCAD
43 | If all has gone well, then installing UnitTestSCAD will be a simple command to run in the command line/terminal.
44 |
45 | To install UnitTestSCAD, run the command:
46 |
47 | `npm i unittestscad`
48 |
49 | # Usage
50 | UnitTestSCAD should be required as standard into a NodeJS script.
51 |
52 | ```javascript
53 | const UnitTestSCAD = require('unittestscad');
54 | ```
55 |
56 | `UnitTestSCAD` exposes several classes designed at enabling assertions on your `.scad` functions and modules. For example, to assert against a `.scad` file which produces a cube (`cube.scad`), you can create it as such:
57 |
58 | ```javascript
59 | const cube = new UnitTestSCAD.ThreeDModule({
60 | include: 'cube.scad'
61 | });
62 |
63 | cube.height === 5;
64 | ```
65 |
66 | # API Reference
67 | See [API Documentation](https://hopefulllama.github.io/UnitTestSCAD/) for more details.
--------------------------------------------------------------------------------
/docs/api_TwoDModule.js.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | JSDoc: Source: api/TwoDModule.js
6 |
7 |
8 |
9 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
Source: api/TwoDModule.js
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
const xml2js = require('xml2js');
30 |
31 | const AbstractModule = require('./AbstractModule');
32 | const TwoDModuleFile = require('../file/TwoDModuleFile');
33 |
34 | function getVertices(parsedOutput) {
35 | return parsedOutput.path
36 | .reduce((previousValue, currentValue) => {
37 | return previousValue.concat(currentValue.$.d.match(/(-*\d+,-*\d+)/g));
38 | }, [])
39 | .map(value => value
40 | .split(',')
41 | .map(point => parseFloat(point))
42 | );
43 | }
44 |
45 | /** @class */
46 | class TwoDModule extends AbstractModule {
47 | /**
48 | * @param {Options} options
49 | */
50 | constructor(options) {
51 | super(options, TwoDModuleFile);
52 |
53 | /**
54 | * @memberof TwoDModule
55 | * @instance
56 | * @member {string} output The extracted output from execution of the .scad file.
57 | */
58 |
59 | /**
60 | * @memberof TwoDModule
61 | * @instance
62 | * @function
63 | * @name isWithinBoundingBox
64 | * @param boundingBox {BoundingBox} The 2D box which the model should fit inside. It is considered 'within' if any coordinate is equal to, or within the box.
65 | * @returns {boolean} True if the model fits within the bounding box.
66 | */
67 |
68 | xml2js.parseString(this.output, (error, result) => {
69 | if(error) {
70 | throw new Error(error);
71 | } else {
72 | /**
73 | * @memberof TwoDModule
74 | * @instance
75 | * @member {Vertex[]} vertices A list of 2D vertices returned from the .scad file execution.
76 | */
77 | this.vertices = getVertices(result.svg);
78 |
79 | /**
80 | * @memberof TwoDModule
81 | * @instance
82 | * @member {number} height The height of the model.
83 | */
84 | this.height = parseInt(result.svg.$.height, 10);
85 | /**
86 | * @memberof TwoDModule
87 | * @instance
88 | * @member {number} width The width of the model.
89 | */
90 | this.width = parseInt(result.svg.$.width, 10);
91 | }
92 | });
93 | }
94 | }
95 |
96 | module.exports = TwoDModule;
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
108 |
109 |
110 |
111 |
114 |
115 |
116 |
117 |
118 |
119 |
--------------------------------------------------------------------------------
/src/api/ThreeDModule.js:
--------------------------------------------------------------------------------
1 | const {EOL} = require('os');
2 |
3 | const AbstractModule = require('./AbstractModule');
4 | const ThreeDModuleFile = require('../file/ThreeDModuleFile');
5 |
6 | function getDimensionSize(vertices, index) {
7 | const range = vertices.reduce((accumulator, vertex) => {
8 | return {
9 | min: vertex[index] < accumulator.min ? vertex[index] : accumulator.min,
10 | max: vertex[index] > accumulator.max ? vertex[index] : accumulator.max,
11 | };
12 | }, {
13 | min: Number.POSITIVE_INFINITY,
14 | max: Number.NEGATIVE_INFINITY
15 | });
16 |
17 | return range.max - range.min;
18 | }
19 |
20 | function getVertex(content) {
21 | return content
22 | .split(' ')
23 | // Last three elements should be the co-ordinates, as a string
24 | .slice(-3)
25 | .map(vertex => parseFloat(vertex, 10));
26 | }
27 |
28 | function getVertices(contents) {
29 | const vertexRegex = new RegExp(/vertex([ ][0-9]+[.]*[0-9]*){3}/, 'gm');
30 |
31 | return contents
32 | .match(vertexRegex)
33 | .filter((value, index, self) => self.indexOf(value) === index)
34 | .map(vertexString => getVertex(vertexString));
35 | }
36 |
37 | function getTriangles(contents) {
38 | const triangleRegex = new RegExp(/outer loop[\s\S]+?endloop/, 'g');
39 |
40 | return contents
41 | .match(triangleRegex)
42 | .map(triangleString => triangleString.split(EOL))
43 | .map(triangleStrings => triangleStrings.splice(1, 3))
44 | .map(verticesOfTriangleStrings => {
45 | return verticesOfTriangleStrings.map(vertexString => getVertex(vertexString));
46 | });
47 | }
48 |
49 | /** @class */
50 | class ThreeDModule extends AbstractModule {
51 | /** @param {Options} options */
52 | constructor(options) {
53 | super(options, ThreeDModuleFile);
54 | /**
55 | * @memberof ThreeDModule
56 | * @instance
57 | * @member {string} output The extracted output from execution of the .scad file.
58 | */
59 |
60 | /**
61 | * @memberof ThreeDModule
62 | * @instance
63 | * @function
64 | * @name isWithinBoundingBox
65 | * @param boundingBox {BoundingBox} The 3D box which the model should fit inside. It is considered 'within' if any coordinate is equal to, or within the box.
66 | * @returns {boolean} True if the model fits within the bounding box.
67 | */
68 |
69 | /**
70 | * @memberof ThreeDModule
71 | * @instance
72 | * @member {Vertex[]} vertices A list of 3D vertices returned from the .scad file execution.
73 | */
74 | this.vertices = getVertices(this.output);
75 |
76 | /**
77 | * @memberof ThreeDModule
78 | * @instance
79 | * @member {number} width The width of the model.
80 | */
81 | this.width = getDimensionSize(this.vertices, 0);
82 |
83 | /**
84 | * @memberof ThreeDModule
85 | * @instance
86 | * @member {number} height The height of the model.
87 | */
88 | this.height = getDimensionSize(this.vertices, 1);
89 |
90 | /**
91 | * @memberof ThreeDModule
92 | * @instance
93 | * @member {number} depth The depth of the model.
94 | */
95 | this.depth = getDimensionSize(this.vertices, 2);
96 |
97 | /**
98 | * @typedef {Vertex[]} Triangle An array of three 3D vertices which describe a triangle. See {@link https://en.wikipedia.org/wiki/Triangle_mesh}.
99 | */
100 |
101 | /**
102 | * @memberof ThreeDModule
103 | * @instance
104 | * @member {Triangle[]} triangles The triangles which make up the model. See {@link https://en.wikipedia.org/wiki/Triangle_mesh}.
105 | */
106 | this.triangles = getTriangles(this.output);
107 | }
108 | }
109 |
110 | module.exports = ThreeDModule;
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 | All notable changes to this project will be documented in this file.
3 |
4 | The format is based on [Keep a Changelog](http://keepachangelog.com/)
5 | and this project adheres to [Semantic Versioning](http://semver.org/).
6 |
7 | ## [Unreleased]
8 | - Nothing yet
9 |
10 | ## [3.0.3] 2018-09-27
11 | ### Fixed
12 | - Fixed `main` entry in `package.json` to point to UnitTestSCAD's correct entry point.
13 |
14 | ## [3.0.2] 2018-09-20
15 | ### Fixed
16 | - Moved `jsdoc` from `dependencies` to `devDependencies`.
17 |
18 | ## [3.0.1] 2018-09-20
19 | ### Fixed
20 | - Fixed `package-lock.json`.
21 |
22 | ## [3.0.0] 2018-09-17
23 | ### Changed
24 | - Entire API has been reworked.
25 | - Removed all assertion methods.
26 | - Removed test runner, test suite handling and associated reporting capabilities.
27 | - UnitTestSCAD now exposes `Function`, `ThreeDModule`, `TwoDModule` and `Types`. This should be used in conjunction with other testing frameworks to build up test suites.
28 | - Changed documentation from markdown to JSDoc. This can be found at [docs/index.html](docs/index.html).
29 |
30 | ## [2.2.0] 2017-07-29
31 | ### Added
32 | - Added `toContainVertices` and `toHaveExactVertices`.
33 |
34 | ### Changes
35 | - Arrays/Vectors now print nicer to console.
36 |
37 | ## [2.1.1] 2017-07-27
38 | ### Fixed
39 | - Finding vertices also works on floats.
40 | - Minor internal improvements.
41 |
42 | ## [2.1.0] 2017-07-16
43 | ### Added
44 | - `typeToBe` assertion added to `openScadFunction` tests.
45 |
46 | ## [2.0.1] 2017-06-28
47 | ### Added
48 | - Can now invoke `unittestscad` through NodeJS `require`.
49 |
50 | ### Fixed
51 | - Exceptions from user specs now correctly bubble up.
52 |
53 | ## [2.0.0] 2017-06-08
54 | ### Added
55 | - `assert` now has an optional `withSetup(setupText)` to allow insertion of OpenSCAD code, prior to the test. Chains with both `openScadFunction()` and `openScadModule()`.
56 | - `assert.openScad2DModule()` now available, along with assertions for 2D modules.
57 | - `xml` reporter now available.
58 |
59 | ### Changed
60 | - Now allow for trailing semi-colons in assertion definitions.
61 | - `assert.openScad3DModule()` available as an alias to `assert.openScadModule()`.
62 |
63 | ## [1.2.1] 2017-07-23
64 | ### Fixed
65 | - Finding vertices also works on floats.
66 |
67 | ## [1.2.0] 2017-06-01
68 | ### Added
69 | - Added reporters, and ability to add custom reporters.
70 |
71 | ### Fixed
72 | - `openScadFunction().outputToBe('...')` now performs a strict equality check, rather than weak containment check.
73 |
74 | ## [1.1.0] 2017-05-28
75 | ### Added
76 | - `not()` function to both `openScadFunction()` and `openScadModule`. Inverts the expectation of the next chained assertion.
77 |
78 | ## [1.0.1] 2017-05-09
79 | ### Fixed
80 | - Clean up of temporary files should be consistent after each run.
81 |
82 | ## [1.0.0] 2017-05-07
83 | ### Added
84 | - Initial release hype!
85 |
86 | [Unreleased]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v3.0.3...HEAD
87 | [3.0.3]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v3.0.2...v3.0.3
88 | [3.0.2]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v3.0.1...v3.0.2
89 | [3.0.1]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v3.0.0...v3.0.1
90 | [3.0.0]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v2.2.0...v3.0.0
91 | [2.2.0]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v2.1.1...v2.2.0
92 | [2.1.1]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v2.1.0...v2.1.1
93 | [2.1.0]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v2.0.1...v2.1.0
94 | [2.0.1]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v2.0.0...v2.0.1
95 | [2.0.0]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v1.2.0...v2.0.0
96 | [1.2.1]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v1.2.0...v1.2.1
97 | [1.2.0]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v1.1.0...v1.2.0
98 | [1.1.0]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v1.0.1...v1.1.0
99 | [1.0.1]: https://github.com/HopefulLlama/UnitTestSCAD/compare/v1.0.0...v1.0.1
100 | [1.0.0]: https://github.com/HopefulLlama/UnitTestSCAD/compare/15ab1edb7d358de72afc3d664f776a2cf1e7e720...v1.0.0
101 |
--------------------------------------------------------------------------------
/spec/unit/file/FileSpec.js:
--------------------------------------------------------------------------------
1 | const {EOL} = require('os');
2 |
3 | const proxyquire = require('proxyquire');
4 |
5 | const options = {
6 | header: 'header',
7 | setUpText: 'setUpText',
8 | testText: 'testText'
9 | };
10 |
11 | // scadFile comes directly from File.js
12 | const scadFile = 'UnitTestSCAD_48967_TEMP_DELETE-ME_SCAD.scad';
13 |
14 | const tempDirectory = 'temp';
15 | const output = 'output';
16 | const error = 'error';
17 |
18 | let mockChildProcess, mockFs, File;
19 |
20 | describe('FileSpec', () => {
21 | beforeEach(() => {
22 | mockChildProcess = jasmine.createSpyObj('mockChildProcess', [
23 | 'execSync'
24 | ]);
25 |
26 | mockFs = jasmine.createSpyObj('mockFs', [
27 | 'writeFileSync',
28 | 'readFileSync',
29 | 'existsSync',
30 | 'unlinkSync'
31 | ]);
32 |
33 | File = proxyquire('../../../src/file/File', {
34 | 'child_process': mockChildProcess,
35 | 'fs': mockFs,
36 | });
37 | });
38 |
39 | describe('openscad executes successfully', () => {
40 | beforeEach(() => {
41 | mockFs.readFileSync.and.returnValue(output);
42 | mockChildProcess.execSync.and.returnValue({
43 | toString: jasmine.createSpy()
44 | });
45 | });
46 |
47 | describe('and file exists', () => {
48 | beforeEach(() => mockFs.existsSync.and.returnValue(true));
49 |
50 | it('should write the file, execute, clean up and return the output', () => {
51 | const output = File.execute(options, tempDirectory);
52 |
53 | expect(output).toBe(output);
54 | expect(mockChildProcess.execSync).toHaveBeenCalledWith(`openscad -o ${tempDirectory} ${scadFile}`);
55 | expect(mockFs.writeFileSync).toHaveBeenCalledWith(scadFile, `${options.header}${EOL}${options.setUpText}${EOL}${options.testText}`);
56 | expect(mockFs.readFileSync).toHaveBeenCalledWith(tempDirectory, 'utf-8');
57 | expect(mockFs.existsSync).toHaveBeenCalledWith(tempDirectory);
58 | expect(mockFs.unlinkSync).toHaveBeenCalledWith(tempDirectory);
59 | expect(mockFs.existsSync).toHaveBeenCalledWith(scadFile);
60 | expect(mockFs.unlinkSync).toHaveBeenCalledWith(scadFile);
61 | });
62 | });
63 |
64 | describe('and file does not exist', () => {
65 | beforeEach(() => mockFs.existsSync.and.returnValue(false));
66 |
67 | it('should write the file, execute, NOT clean up and return the output', () => {
68 | const output = File.execute(options, tempDirectory);
69 |
70 | expect(output).toBe(output);
71 | expect(mockChildProcess.execSync).toHaveBeenCalledWith(`openscad -o ${tempDirectory} ${scadFile}`);
72 | expect(mockFs.writeFileSync).toHaveBeenCalledWith(scadFile, `${options.header}${EOL}${options.setUpText}${EOL}${options.testText}`);
73 | expect(mockFs.readFileSync).toHaveBeenCalledWith(tempDirectory, 'utf-8');
74 | expect(mockFs.existsSync).toHaveBeenCalledWith(tempDirectory);
75 | expect(mockFs.existsSync).toHaveBeenCalledWith(scadFile);
76 | expect(mockFs.unlinkSync).not.toHaveBeenCalled();
77 | });
78 | });
79 | });
80 |
81 | describe('openscad fails to execute', () => {
82 | beforeEach(() => mockChildProcess.execSync.and.throwError(error));
83 |
84 | describe('and file exists', () => {
85 | beforeEach(() => mockFs.existsSync.and.returnValue(true));
86 |
87 | it('should clean up and throw error', () => {
88 | expect(() => File.execute(options, tempDirectory)).toThrowError(error);
89 | expect(mockFs.existsSync).toHaveBeenCalledWith(tempDirectory);
90 | expect(mockFs.unlinkSync).toHaveBeenCalledWith(tempDirectory);
91 | expect(mockFs.existsSync).toHaveBeenCalledWith(scadFile);
92 | expect(mockFs.unlinkSync).toHaveBeenCalledWith(scadFile);
93 | });
94 | });
95 |
96 | describe('and file does not exist', () => {
97 | beforeEach(() => mockFs.existsSync.and.returnValue(false));
98 |
99 | it('should clean up and throw error', () => {
100 | expect(() => File.execute(options, tempDirectory)).toThrowError(error);
101 | expect(mockFs.existsSync).toHaveBeenCalledWith(tempDirectory);
102 | expect(mockFs.existsSync).toHaveBeenCalledWith(scadFile);
103 | expect(mockFs.unlinkSync).not.toHaveBeenCalled();
104 | });
105 | });
106 | });
107 | });
--------------------------------------------------------------------------------
/docs/api_OpenSCADFunction.js.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | JSDoc: Source: api/OpenSCADFunction.js
6 |
7 |
8 |
9 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
Source: api/OpenSCADFunction.js
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
const AbstractParent = require('./AbstractParent');
30 | const FunctionFile = require('../file/FunctionFile');
31 | const TypeConverter = require('../types/TypeConverter');
32 | const Types = require('../types/Types');
33 |
34 | /** @class */
35 | class Function extends AbstractParent {
36 | /**
37 | * @param {Options} options
38 | */
39 | constructor(options) {
40 | super(options, FunctionFile);
41 | /**
42 | * @memberof Function
43 | * @instance
44 | * @member {string} output The extracted output from execution of the .scad file.
45 | */
46 | /**
47 | * @memberof Function
48 | * @instance
49 | * @member {Type} type The detected type of the value retrieved from the OpenSCAD function.
50 | */
51 | this.type = TypeConverter.getType(this.output);
52 | }
53 |
54 | /**
55 | * Returns true if this type is of type {@link OpenSCADBoolean}.
56 | * @returns {boolean} True if this type is of type {@link OpenSCADBoolean}.
57 | */
58 | isBoolean() {
59 | return this.type === Types.BOOLEAN;
60 | }
61 |
62 | /**
63 | * Returns true if this type is of type {@link OpenSCADInfinity}.
64 | * @returns {boolean} True if this type is of type {@link OpenSCADInfinity}.
65 | */
66 | isInf() {
67 | return this.type === Types.INF;
68 | }
69 |
70 | /**
71 | * Returns true if this type is of type {@link OpenSCADNaN}.
72 | * @returns {boolean} True if this type is of type {@link OpenSCADNaN}.
73 | */
74 | isNan() {
75 | return this.type === Types.NAN;
76 | }
77 |
78 | /**
79 | * Returns true if this type is of type {@link OpenSCADNumber}.
80 | * @returns {boolean} True if this type is of type {@link OpenSCADNumber}.
81 | */
82 | isNumber() {
83 | return this.type === Types.NUMBER;
84 | }
85 |
86 | /**
87 | * Returns true if this type is of type {@link OpenSCADRange}.
88 | * @returns {boolean} True if this type is of type {@link OpenSCADBoolean}.
89 | */
90 | isRange() {
91 | return this.type === Types.RANGE;
92 | }
93 |
94 | /**
95 | * Returns true if this type is of type {@link OpenSCADString}.
96 | * @returns {boolean} True if this type is of type {@link OpenSCADString}.
97 | */
98 | isString() {
99 | return this.type === Types.STRING;
100 | }
101 |
102 | /**
103 | * Returns true if this type is of type {@link OpenSCADUndefined}.
104 | * @returns {boolean} True if this type is of type {@link OpenSCADUndefined}.
105 | */
106 | isUndef() {
107 | return this.type === Types.UNDEF;
108 | }
109 |
110 | /**
111 | * Returns true if this type is of type {@link OpenSCADVector}.
112 | * @returns {boolean} True if this type is of type {@link OpenSCADVector}.
113 | */
114 | isVector() {
115 | return this.type === Types.VECTOR;
116 | }
117 | }
118 |
119 | module.exports = Function;
648 |
649 |
652 |
653 |
654 |
655 |
658 |
659 |
660 |
661 |
662 |
--------------------------------------------------------------------------------
/docs/scripts/prettify/Apache-License-2.0.txt:
--------------------------------------------------------------------------------
1 |
2 | Apache License
3 | Version 2.0, January 2004
4 | http://www.apache.org/licenses/
5 |
6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 |
8 | 1. Definitions.
9 |
10 | "License" shall mean the terms and conditions for use, reproduction,
11 | and distribution as defined by Sections 1 through 9 of this document.
12 |
13 | "Licensor" shall mean the copyright owner or entity authorized by
14 | the copyright owner that is granting the License.
15 |
16 | "Legal Entity" shall mean the union of the acting entity and all
17 | other entities that control, are controlled by, or are under common
18 | control with that entity. For the purposes of this definition,
19 | "control" means (i) the power, direct or indirect, to cause the
20 | direction or management of such entity, whether by contract or
21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 | outstanding shares, or (iii) beneficial ownership of such entity.
23 |
24 | "You" (or "Your") shall mean an individual or Legal Entity
25 | exercising permissions granted by this License.
26 |
27 | "Source" form shall mean the preferred form for making modifications,
28 | including but not limited to software source code, documentation
29 | source, and configuration files.
30 |
31 | "Object" form shall mean any form resulting from mechanical
32 | transformation or translation of a Source form, including but
33 | not limited to compiled object code, generated documentation,
34 | and conversions to other media types.
35 |
36 | "Work" shall mean the work of authorship, whether in Source or
37 | Object form, made available under the License, as indicated by a
38 | copyright notice that is included in or attached to the work
39 | (an example is provided in the Appendix below).
40 |
41 | "Derivative Works" shall mean any work, whether in Source or Object
42 | form, that is based on (or derived from) the Work and for which the
43 | editorial revisions, annotations, elaborations, or other modifications
44 | represent, as a whole, an original work of authorship. For the purposes
45 | of this License, Derivative Works shall not include works that remain
46 | separable from, or merely link (or bind by name) to the interfaces of,
47 | the Work and Derivative Works thereof.
48 |
49 | "Contribution" shall mean any work of authorship, including
50 | the original version of the Work and any modifications or additions
51 | to that Work or Derivative Works thereof, that is intentionally
52 | submitted to Licensor for inclusion in the Work by the copyright owner
53 | or by an individual or Legal Entity authorized to submit on behalf of
54 | the copyright owner. For the purposes of this definition, "submitted"
55 | means any form of electronic, verbal, or written communication sent
56 | to the Licensor or its representatives, including but not limited to
57 | communication on electronic mailing lists, source code control systems,
58 | and issue tracking systems that are managed by, or on behalf of, the
59 | Licensor for the purpose of discussing and improving the Work, but
60 | excluding communication that is conspicuously marked or otherwise
61 | designated in writing by the copyright owner as "Not a Contribution."
62 |
63 | "Contributor" shall mean Licensor and any individual or Legal Entity
64 | on behalf of whom a Contribution has been received by Licensor and
65 | subsequently incorporated within the Work.
66 |
67 | 2. Grant of Copyright License. Subject to the terms and conditions of
68 | this License, each Contributor hereby grants to You a perpetual,
69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 | copyright license to reproduce, prepare Derivative Works of,
71 | publicly display, publicly perform, sublicense, and distribute the
72 | Work and such Derivative Works in Source or Object form.
73 |
74 | 3. Grant of Patent License. Subject to the terms and conditions of
75 | this License, each Contributor hereby grants to You a perpetual,
76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 | (except as stated in this section) patent license to make, have made,
78 | use, offer to sell, sell, import, and otherwise transfer the Work,
79 | where such license applies only to those patent claims licensable
80 | by such Contributor that are necessarily infringed by their
81 | Contribution(s) alone or by combination of their Contribution(s)
82 | with the Work to which such Contribution(s) was submitted. If You
83 | institute patent litigation against any entity (including a
84 | cross-claim or counterclaim in a lawsuit) alleging that the Work
85 | or a Contribution incorporated within the Work constitutes direct
86 | or contributory patent infringement, then any patent licenses
87 | granted to You under this License for that Work shall terminate
88 | as of the date such litigation is filed.
89 |
90 | 4. Redistribution. You may reproduce and distribute copies of the
91 | Work or Derivative Works thereof in any medium, with or without
92 | modifications, and in Source or Object form, provided that You
93 | meet the following conditions:
94 |
95 | (a) You must give any other recipients of the Work or
96 | Derivative Works a copy of this License; and
97 |
98 | (b) You must cause any modified files to carry prominent notices
99 | stating that You changed the files; and
100 |
101 | (c) You must retain, in the Source form of any Derivative Works
102 | that You distribute, all copyright, patent, trademark, and
103 | attribution notices from the Source form of the Work,
104 | excluding those notices that do not pertain to any part of
105 | the Derivative Works; and
106 |
107 | (d) If the Work includes a "NOTICE" text file as part of its
108 | distribution, then any Derivative Works that You distribute must
109 | include a readable copy of the attribution notices contained
110 | within such NOTICE file, excluding those notices that do not
111 | pertain to any part of the Derivative Works, in at least one
112 | of the following places: within a NOTICE text file distributed
113 | as part of the Derivative Works; within the Source form or
114 | documentation, if provided along with the Derivative Works; or,
115 | within a display generated by the Derivative Works, if and
116 | wherever such third-party notices normally appear. The contents
117 | of the NOTICE file are for informational purposes only and
118 | do not modify the License. You may add Your own attribution
119 | notices within Derivative Works that You distribute, alongside
120 | or as an addendum to the NOTICE text from the Work, provided
121 | that such additional attribution notices cannot be construed
122 | as modifying the License.
123 |
124 | You may add Your own copyright statement to Your modifications and
125 | may provide additional or different license terms and conditions
126 | for use, reproduction, or distribution of Your modifications, or
127 | for any such Derivative Works as a whole, provided Your use,
128 | reproduction, and distribution of the Work otherwise complies with
129 | the conditions stated in this License.
130 |
131 | 5. Submission of Contributions. Unless You explicitly state otherwise,
132 | any Contribution intentionally submitted for inclusion in the Work
133 | by You to the Licensor shall be under the terms and conditions of
134 | this License, without any additional terms or conditions.
135 | Notwithstanding the above, nothing herein shall supersede or modify
136 | the terms of any separate license agreement you may have executed
137 | with Licensor regarding such Contributions.
138 |
139 | 6. Trademarks. This License does not grant permission to use the trade
140 | names, trademarks, service marks, or product names of the Licensor,
141 | except as required for reasonable and customary use in describing the
142 | origin of the Work and reproducing the content of the NOTICE file.
143 |
144 | 7. Disclaimer of Warranty. Unless required by applicable law or
145 | agreed to in writing, Licensor provides the Work (and each
146 | Contributor provides its Contributions) on an "AS IS" BASIS,
147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 | implied, including, without limitation, any warranties or conditions
149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 | PARTICULAR PURPOSE. You are solely responsible for determining the
151 | appropriateness of using or redistributing the Work and assume any
152 | risks associated with Your exercise of permissions under this License.
153 |
154 | 8. Limitation of Liability. In no event and under no legal theory,
155 | whether in tort (including negligence), contract, or otherwise,
156 | unless required by applicable law (such as deliberate and grossly
157 | negligent acts) or agreed to in writing, shall any Contributor be
158 | liable to You for damages, including any direct, indirect, special,
159 | incidental, or consequential damages of any character arising as a
160 | result of this License or out of the use or inability to use the
161 | Work (including but not limited to damages for loss of goodwill,
162 | work stoppage, computer failure or malfunction, or any and all
163 | other commercial damages or losses), even if such Contributor
164 | has been advised of the possibility of such damages.
165 |
166 | 9. Accepting Warranty or Additional Liability. While redistributing
167 | the Work or Derivative Works thereof, You may choose to offer,
168 | and charge a fee for, acceptance of support, warranty, indemnity,
169 | or other liability obligations and/or rights consistent with this
170 | License. However, in accepting such obligations, You may act only
171 | on Your own behalf and on Your sole responsibility, not on behalf
172 | of any other Contributor, and only if You agree to indemnify,
173 | defend, and hold each Contributor harmless for any liability
174 | incurred by, or claims asserted against, such Contributor by reason
175 | of your accepting any such warranty or additional liability.
176 |
177 | END OF TERMS AND CONDITIONS
178 |
179 | APPENDIX: How to apply the Apache License to your work.
180 |
181 | To apply the Apache License to your work, attach the following
182 | boilerplate notice, with the fields enclosed by brackets "[]"
183 | replaced with your own identifying information. (Don't include
184 | the brackets!) The text should be enclosed in the appropriate
185 | comment syntax for the file format. We also recommend that a
186 | file or class name and description of purpose be included on the
187 | same "printed page" as the copyright notice for easier
188 | identification within third-party archives.
189 |
190 | Copyright [yyyy] [name of copyright owner]
191 |
192 | Licensed under the Apache License, Version 2.0 (the "License");
193 | you may not use this file except in compliance with the License.
194 | You may obtain a copy of the License at
195 |
196 | http://www.apache.org/licenses/LICENSE-2.0
197 |
198 | Unless required by applicable law or agreed to in writing, software
199 | distributed under the License is distributed on an "AS IS" BASIS,
200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201 | See the License for the specific language governing permissions and
202 | limitations under the License.
203 |
--------------------------------------------------------------------------------
/docs/scripts/prettify/prettify.js:
--------------------------------------------------------------------------------
1 | var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
2 | (function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
3 | [],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
9 | l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
10 | q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
11 | q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
12 | "");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
13 | a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
14 | for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
18 | "catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
19 | H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
20 | J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
21 | I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]+/],["dec",/^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^
8 |
9 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |