diff --git a/README.md b/README.md index 15c3a0bdb..5b67ed481 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,13 @@ CadQuery supports Jupyter notebook out of the box using the jupyter-cadquery ext CadQuery Jupyter extension screenshot +### Docker + +A list of Docker images can be found [here](https://github.com/RubenRubens/cq-containers), and includes images for the following projects. +* [Core CadQuery library](https://github.com/RubenRubens/cq-containers/tree/master/cq-conda), which allows users to run CadQuery Python scripts without a GUI. +* [cq-cli](https://github.com/RubenRubens/cq-containers/tree/master/cq-cli), a command line utility which is used to export the results of a CadQuery script to an output format (i.e. STL, STEP). +* [jupyter-cadquery](https://github.com/bernhard-42/jupyter-cadquery#b-using-a-docker-image), makes CadQuery accessible through Jupyter Labs and provides a web-based GUI. This is currently the only image that provides a GUI. + ### Standalone Stable Version CadQuery was built to be used as a Python library without any GUI. This makes it great for use cases such as integration into servers, or creating scientific and engineering scripts. Use Anaconda/Miniconda to install CadQuery, and then add `import cadquery` to the top of your Python scripts. If the stable version of CadQuery is desired, the following command will install it. However, be aware that the stable version can fall significantly behind the current state of CadQuery, so in many cases the `master` installation method at the beginning of the Getting Started section is preferable. diff --git a/cadquery/cq.py b/cadquery/cq.py index d3c24ce99..2049f0b3c 100644 --- a/cadquery/cq.py +++ b/cadquery/cq.py @@ -1961,7 +1961,7 @@ def parametricCurve( :param N: number of points for discretization :param start: starting value of the parameter t :param stop: final value of the parameter t - :param tol: tolerance of the algorithm (default: 1e-3) + :param tol: tolerance of the algorithm (default: 1e-6) :param minDeg: minimum spline degree (default: 1) :param maxDeg: maximum spline degree (default: 6) :param smoothing: optional parameters for the variational smoothing algorithm (default: (1,1,1)) @@ -2626,7 +2626,7 @@ def polygon( The first vertex is always oriented in the x direction. - :param nSides: number of sides, must be > 3 + :param nSides: number of sides, must be >= 3 :param diameter: the size of the circle the polygon is inscribed into :return: a polygon wire """