├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── coverage.yml │ ├── docs.yml │ ├── ironpython.yml │ ├── pr-checks.yml │ ├── publish_yak.yml │ └── release.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conftest.py ├── docs ├── _images │ ├── COMPAS.png │ ├── extensions │ │ ├── compas-robots.png │ │ ├── compas_3gs.jpg │ │ ├── compas_ags.png │ │ ├── compas_assembly.png │ │ ├── compas_cem.png │ │ ├── compas_cgal.png │ │ ├── compas_cloud.png │ │ ├── compas_cra.png │ │ ├── compas_fab.png │ │ ├── compas_fea.png │ │ ├── compas_fem.png │ │ ├── compas_gmsh.png │ │ ├── compas_libigl.png │ │ ├── compas_occ.png │ │ ├── compas_pattern1.png │ │ ├── compas_pattern2.png │ │ ├── compas_rbe.jpg │ │ ├── compas_rrc.png │ │ ├── compas_skeleton.png │ │ ├── compas_slicer.jpg │ │ ├── compas_tia.png │ │ ├── compas_tna.jpg │ │ ├── compas_triangle.png │ │ └── compas_vol.png │ ├── ghpython_custom.jpg │ ├── installation.gif │ ├── rhino_scripteditor.png │ ├── tutorial │ │ ├── plotters_dynamic.gif │ │ ├── plotters_example.png │ │ ├── plotters_line-options.png │ │ ├── plotters_point-options.png │ │ ├── plotters_polygon-options.png │ │ └── plotters_vector-options.png │ ├── userguide │ │ ├── basics.colors_color-circle.png │ │ ├── basics.colors_lightness.png │ │ ├── basics.colors_maps.png │ │ ├── basics.colors_maps_from-one-color.png │ │ ├── basics.colors_maps_from-rgb.png │ │ ├── basics.colors_maps_from-three-colors.png │ │ ├── basics.colors_maps_from-two-colors.png │ │ ├── basics.colors_saturation.png │ │ ├── basics.datastructures.cellnetworks.example_color.png │ │ ├── basics.datastructures.cellnetworks.example_grey.png │ │ ├── basics.datastructures.cellnetworks.example_hull.png │ │ ├── basics.datastructures.meshes.cycles.png │ │ ├── basics.datastructures.meshes.edge-loop.png │ │ ├── basics.datastructures.meshes.edge-strip.png │ │ ├── basics.datastructures.meshes.face-neighbours.png │ │ ├── basics.datastructures.meshes.meshgrid-column0.png │ │ ├── basics.datastructures.meshes.meshgrid-column3.png │ │ ├── basics.datastructures.meshes.tubemesh.png │ │ ├── basics.datastructures.meshes.vertex-faces.png │ │ ├── basics.datastructures.meshes.vertex-neighbours.png │ │ ├── cad.blender.visualisation.png │ │ ├── cad.grasshopper.gh_verify.jpg │ │ └── cad.grasshopper.ghpython_component.jpg │ └── vscode_git.JPG ├── _static │ └── PLACEHOLDER ├── api │ ├── compas.colors.html_colors.rst │ ├── compas.colors.rst │ ├── compas.data.rst │ ├── compas.datastructures.Assembly.rst │ ├── compas.datastructures.CellNetwork.rst │ ├── compas.datastructures.Graph.rst │ ├── compas.datastructures.Mesh.rst │ ├── compas.datastructures.Tree.rst │ ├── compas.datastructures.VolMesh.rst │ ├── compas.datastructures.rst │ ├── compas.files.rst │ ├── compas.geometry.rst │ ├── compas.itertools.rst │ ├── compas.plugins.rst │ ├── compas.rpc.rst │ ├── compas.scene.rst │ ├── compas.tolerance.rst │ ├── compas_blender.conversions.rst │ ├── compas_blender.geometry.rst │ ├── compas_blender.scene.rst │ ├── compas_ghpython.components.rst │ ├── compas_ghpython.scene.rst │ ├── compas_rhino.conversions.rst │ ├── compas_rhino.geometry.rst │ ├── compas_rhino.scene.rst │ └── index.rst ├── conf.py ├── devguide │ ├── code.rst │ ├── documentation.rst │ ├── dtypes.rst │ ├── extensions.rst │ ├── ghcomponent.rst │ ├── index.rst │ ├── plugins.rst │ ├── setup.rst │ └── workflow.rst ├── index.rst ├── sort__all__.py ├── userguide │ ├── _plotter.py │ ├── advanced.hashtree.rst │ ├── advanced.pluggables.rst │ ├── advanced.rpc.rst │ ├── advanced.serialisation.rst │ ├── advanced.tolerance.rst │ ├── basics.colors.rst │ ├── basics.datastructures.cellnetwork.rst │ ├── basics.datastructures.cellnetworks.py │ ├── basics.datastructures.cells.rst │ ├── basics.datastructures.graphs.rst │ ├── basics.datastructures.meshes.py │ ├── basics.datastructures.meshes.rst │ ├── basics.datastructures.rst │ ├── basics.datastructures.trees.rst │ ├── basics.datastructures.volmeshes.rst │ ├── basics.datastructures.volmeshes_example-1.py │ ├── basics.geometry.breps.rst │ ├── basics.geometry.curves_and_surfaces.rst │ ├── basics.geometry.distance_and_membership.rst │ ├── basics.geometry.intersections.rst │ ├── basics.geometry.planes_and_frames.rst │ ├── basics.geometry.points_and_vectors.rst │ ├── basics.geometry.polygons_and_polyhedrons.rst │ ├── basics.geometry.rst │ ├── basics.geometry.solids.rst │ ├── basics.geometry.transformations.rst │ ├── basics.visualisation.rst │ ├── cad.blender.rst │ ├── cad.grasshopper.rst │ ├── cad.other.rst │ ├── cad.rhino.rst │ ├── cad.rhino8.rst │ ├── citing.rst │ ├── firststeps.rst │ ├── index.rst │ ├── installation.rst │ ├── introduction.rst │ ├── license.rst │ ├── releases.rst │ ├── samples │ │ ├── colors.py │ │ ├── colors_lightness.py │ │ ├── colors_maps.py │ │ ├── colors_maps_from-one-color.py │ │ ├── colors_maps_from-rgb.py │ │ ├── colors_maps_from-rgb_simple.py │ │ ├── colors_maps_from-three-colors.py │ │ ├── colors_maps_from-two-colors.py │ │ ├── colors_saturation.py │ │ ├── obb.py │ │ ├── point_in_box.py │ │ └── quadmesh_planarize.py │ ├── scene.py │ └── whatsnext.rst └── write_rst.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── src ├── compas │ ├── __init__.py │ ├── __main__.py │ ├── _iotools.py │ ├── _os.py │ ├── colors │ │ ├── __init__.py │ │ ├── cmcrameri │ │ │ ├── LICENSE │ │ │ ├── acton.txt │ │ │ ├── actonS.txt │ │ │ ├── bam.txt │ │ │ ├── bamO.txt │ │ │ ├── bamako.txt │ │ │ ├── bamakoS.txt │ │ │ ├── batlow.txt │ │ │ ├── batlowK.txt │ │ │ ├── batlowS.txt │ │ │ ├── batlowW.txt │ │ │ ├── berlin.txt │ │ │ ├── bilbao.txt │ │ │ ├── bilbaoS.txt │ │ │ ├── broc.txt │ │ │ ├── brocO.txt │ │ │ ├── buda.txt │ │ │ ├── budaS.txt │ │ │ ├── bukavu.txt │ │ │ ├── cork.txt │ │ │ ├── corkO.txt │ │ │ ├── davos.txt │ │ │ ├── davosS.txt │ │ │ ├── devon.txt │ │ │ ├── devonS.txt │ │ │ ├── fes.txt │ │ │ ├── grayC.txt │ │ │ ├── grayCS.txt │ │ │ ├── hawaii.txt │ │ │ ├── hawaiiS.txt │ │ │ ├── imola.txt │ │ │ ├── imolaS.txt │ │ │ ├── lajolla.txt │ │ │ ├── lajollaS.txt │ │ │ ├── lapaz.txt │ │ │ ├── lapazS.txt │ │ │ ├── lisbon.txt │ │ │ ├── nuuk.txt │ │ │ ├── nuukS.txt │ │ │ ├── oleron.txt │ │ │ ├── oslo.txt │ │ │ ├── osloS.txt │ │ │ ├── roma.txt │ │ │ ├── romaO.txt │ │ │ ├── tofino.txt │ │ │ ├── tokyo.txt │ │ │ ├── tokyoS.txt │ │ │ ├── turku.txt │ │ │ ├── turkuS.txt │ │ │ ├── vanimo.txt │ │ │ ├── vik.txt │ │ │ └── vikO.txt │ │ ├── color.py │ │ ├── colordict.py │ │ ├── colormap.py │ │ ├── html_colors.py │ │ └── mpl_colormap.py │ ├── data │ │ ├── __init__.py │ │ ├── coercion.py │ │ ├── data.py │ │ ├── encoders.py │ │ ├── exceptions.py │ │ ├── json.py │ │ ├── samples │ │ │ ├── boxes.obj │ │ │ ├── butt_model.obj │ │ │ ├── cellnetwork_example.json │ │ │ ├── cone.stl │ │ │ ├── cube.off │ │ │ ├── cube_ascii.stl │ │ │ ├── cube_binary.stl │ │ │ ├── cube_binary_2.stl │ │ │ ├── doosabin.json │ │ │ ├── faces.obj │ │ │ ├── faces_big.obj │ │ │ ├── faces_reversed.obj │ │ │ ├── fink.obj │ │ │ ├── grid_irregular.obj │ │ │ ├── hypar.obj │ │ │ ├── lines.json │ │ │ ├── lines.obj │ │ │ ├── lines_big.obj │ │ │ ├── lines_bigger.obj │ │ │ ├── lines_noleaves.obj │ │ │ ├── mesh.obj │ │ │ ├── mesh_100_faces.json │ │ │ ├── mesh_110_faces.json │ │ │ ├── open_edges.obj │ │ │ ├── point.json │ │ │ ├── quadmesh.obj │ │ │ ├── quadmesh_planar.obj │ │ │ ├── saddle.obj │ │ │ ├── spline.obj │ │ │ ├── tubemesh.json │ │ │ ├── tubemesh.obj │ │ │ ├── tubemesh.off │ │ │ └── tubemesh.ply │ │ ├── schema.py │ │ └── validators.py │ ├── datastructures │ │ ├── __init__.py │ │ ├── _mutablemapping.py │ │ ├── assembly │ │ │ ├── __init__.py │ │ │ ├── assembly.py │ │ │ ├── exceptions.py │ │ │ └── part.py │ │ ├── attributes.py │ │ ├── cell_network │ │ │ ├── __init__.py │ │ │ └── cell_network.py │ │ ├── datastructure.py │ │ ├── graph │ │ │ ├── __init__.py │ │ │ ├── duality.py │ │ │ ├── graph.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── join.py │ │ │ │ └── split.py │ │ │ ├── planarity.py │ │ │ └── smoothing.py │ │ ├── mesh │ │ │ ├── __init__.py │ │ │ ├── conway.py │ │ │ ├── duality.py │ │ │ ├── mesh.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── collapse.py │ │ │ │ ├── extrude.py │ │ │ │ ├── insert.py │ │ │ │ ├── merge.py │ │ │ │ ├── split.py │ │ │ │ ├── substitute.py │ │ │ │ ├── swap.py │ │ │ │ └── weld.py │ │ │ ├── remesh.py │ │ │ ├── slice.py │ │ │ ├── smoothing.py │ │ │ └── subdivision.py │ │ ├── tree │ │ │ ├── __init__.py │ │ │ ├── hashtree.py │ │ │ └── tree.py │ │ └── volmesh │ │ │ ├── __init__.py │ │ │ └── volmesh.py │ ├── files │ │ ├── __init__.py │ │ ├── _xml │ │ │ ├── __init__.py │ │ │ ├── xml_cli.py │ │ │ ├── xml_cpython.py │ │ │ ├── xml_pre_38.py │ │ │ └── xml_shared.py │ │ ├── gltf │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── data_classes.py │ │ │ ├── extensions.py │ │ │ ├── gltf.py │ │ │ ├── gltf_children.py │ │ │ ├── gltf_content.py │ │ │ ├── gltf_exporter.py │ │ │ ├── gltf_mesh.py │ │ │ ├── gltf_node.py │ │ │ ├── gltf_parser.py │ │ │ ├── gltf_reader.py │ │ │ ├── gltf_scene.py │ │ │ └── helpers.py │ │ ├── obj.py │ │ ├── off.py │ │ ├── ply.py │ │ ├── stl.py │ │ └── xml.py │ ├── geometry │ │ ├── __init__.py │ │ ├── _core │ │ │ ├── __init__.py │ │ │ ├── _algebra.py │ │ │ ├── angles.py │ │ │ ├── centroids.py │ │ │ ├── distance.py │ │ │ ├── normals.py │ │ │ ├── nurbs.py │ │ │ ├── predicates_2.py │ │ │ ├── predicates_3.py │ │ │ ├── quaternions.py │ │ │ ├── size.py │ │ │ ├── tangent.py │ │ │ ├── transformations.py │ │ │ └── transformations_numpy.py │ │ ├── bbox.py │ │ ├── bbox_numpy.py │ │ ├── bestfit.py │ │ ├── bestfit_numpy.py │ │ ├── booleans.py │ │ ├── booleans_shapely.py │ │ ├── brep │ │ │ ├── __init__.py │ │ │ ├── brep.py │ │ │ ├── edge.py │ │ │ ├── errors.py │ │ │ ├── face.py │ │ │ ├── loop.py │ │ │ ├── trim.py │ │ │ └── vertex.py │ │ ├── contours.py │ │ ├── curves │ │ │ ├── __init__.py │ │ │ ├── arc.py │ │ │ ├── bezier.py │ │ │ ├── circle.py │ │ │ ├── conic.py │ │ │ ├── curve.py │ │ │ ├── ellipse.py │ │ │ ├── hyperbola.py │ │ │ ├── line.py │ │ │ ├── nurbs.py │ │ │ ├── parabola.py │ │ │ └── polyline.py │ │ ├── frame.py │ │ ├── geometry.py │ │ ├── hull.py │ │ ├── hull_numpy.py │ │ ├── icp_numpy.py │ │ ├── interpolation_barycentric.py │ │ ├── interpolation_coons.py │ │ ├── interpolation_tweening.py │ │ ├── intersection.py │ │ ├── intersections.py │ │ ├── kdtree.py │ │ ├── offset.py │ │ ├── pca_numpy.py │ │ ├── plane.py │ │ ├── point.py │ │ ├── pointcloud.py │ │ ├── polygon.py │ │ ├── polyhedron.py │ │ ├── projection.py │ │ ├── quadmesh_planarize.py │ │ ├── quadmesh_planarize_none.py │ │ ├── quaternion.py │ │ ├── reflection.py │ │ ├── rotation.py │ │ ├── scale.py │ │ ├── shapes │ │ │ ├── __init__.py │ │ │ ├── box.py │ │ │ ├── capsule.py │ │ │ ├── cone.py │ │ │ ├── cylinder.py │ │ │ ├── shape.py │ │ │ ├── sphere.py │ │ │ └── torus.py │ │ ├── shear.py │ │ ├── surfaces │ │ │ ├── __init__.py │ │ │ ├── conical.py │ │ │ ├── cylindrical.py │ │ │ ├── extrusion.py │ │ │ ├── nurbs.py │ │ │ ├── planar.py │ │ │ ├── revolution.py │ │ │ ├── spherical.py │ │ │ ├── surface.py │ │ │ └── toroidal.py │ │ ├── transformation.py │ │ ├── translation.py │ │ ├── triangulation_delaunay.py │ │ ├── triangulation_earclip.py │ │ ├── trimesh_curvature.py │ │ ├── trimesh_descent_numpy.py │ │ ├── trimesh_geodistance.py │ │ ├── trimesh_gradient_numpy.py │ │ ├── trimesh_isolines.py │ │ ├── trimesh_matrices.py │ │ ├── trimesh_matrices_numpy.py │ │ ├── trimesh_parametrisation.py │ │ ├── trimesh_pull_points_numpy.py │ │ ├── trimesh_remeshing.py │ │ ├── trimesh_samplepoints_numpy.py │ │ ├── trimesh_slicing.py │ │ ├── trimesh_smoothing_numpy.py │ │ └── vector.py │ ├── itertools.py │ ├── linalg.py │ ├── matrices.py │ ├── plugins.py │ ├── rpc │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── dispatcher.py │ │ ├── errors.py │ │ ├── proxy.py │ │ ├── server.py │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── default.py │ │ │ └── watcher.py │ ├── scene │ │ ├── __init__.py │ │ ├── context.py │ │ ├── curveobject.py │ │ ├── descriptors │ │ │ ├── __init__.py │ │ │ ├── attribute.py │ │ │ ├── color.py │ │ │ ├── colordict.py │ │ │ └── protocol.py │ │ ├── exceptions.py │ │ ├── frameobject.py │ │ ├── geometryobject.py │ │ ├── graphobject.py │ │ ├── group.py │ │ ├── meshobject.py │ │ ├── planeobject.py │ │ ├── scene.py │ │ ├── sceneobject.py │ │ ├── shapeobject.py │ │ ├── surfaceobject.py │ │ └── volmeshobject.py │ ├── tolerance.py │ ├── topology │ │ ├── __init__.py │ │ ├── combinatorics.py │ │ ├── connectivity.py │ │ ├── orientation.py │ │ └── traversal.py │ └── utilities │ │ ├── __init__.py │ │ ├── azync.py │ │ ├── datetime.py │ │ ├── decorators.py │ │ ├── remote.py │ │ └── ssh.py ├── compas_blender │ ├── __init__.py │ ├── collections.py │ ├── conversions │ │ ├── __init__.py │ │ ├── breps.py │ │ ├── colors.py │ │ ├── curves.py │ │ ├── geometry.py │ │ ├── meshes.py │ │ ├── surfaces.py │ │ └── transformations.py │ ├── data.py │ ├── drawing.py │ ├── geometry │ │ ├── __init__.py │ │ └── booleans.py │ ├── install.py │ ├── objects.py │ ├── print_python_path.py │ ├── scene │ │ ├── __init__.py │ │ ├── boxobject.py │ │ ├── circleobject.py │ │ ├── curveobject.py │ │ ├── frameobject.py │ │ ├── graphobject.py │ │ ├── lineobject.py │ │ ├── meshobject.py │ │ ├── planeobject.py │ │ ├── pointcloudobject.py │ │ ├── pointobject.py │ │ ├── polygonobject.py │ │ ├── polyhedronobject.py │ │ ├── polylineobject.py │ │ ├── sceneobject.py │ │ ├── shapeobject.py │ │ ├── surfaceobject.py │ │ ├── vectorobject.py │ │ └── volmeshobject.py │ └── utilities │ │ └── __init__.py ├── compas_ghpython │ ├── __init__.py │ ├── components │ │ ├── Compas_FromJson │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ ├── Compas_Info │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ ├── Compas_RpcCall │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ ├── Compas_ToJson │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ ├── Compas_ToRhinoGeometry │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ └── __init__.py │ ├── components_cpython │ │ ├── Compas_FromJson │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ ├── Compas_Info │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ ├── Compas_RpcCall │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ ├── Compas_ToJson │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ │ └── Compas_ToRhinoGeometry │ │ │ ├── code.py │ │ │ ├── icon.png │ │ │ └── metadata.json │ ├── drawing.py │ ├── install.py │ ├── scene │ │ ├── __init__.py │ │ ├── boxobject.py │ │ ├── brepobject.py │ │ ├── capsuleobject.py │ │ ├── circleobject.py │ │ ├── coneobject.py │ │ ├── curveobject.py │ │ ├── cylinderobject.py │ │ ├── ellipseobject.py │ │ ├── frameobject.py │ │ ├── graphobject.py │ │ ├── lineobject.py │ │ ├── meshobject.py │ │ ├── planeobject.py │ │ ├── pointobject.py │ │ ├── polygonobject.py │ │ ├── polyhedronobject.py │ │ ├── polylineobject.py │ │ ├── sceneobject.py │ │ ├── sphereobject.py │ │ ├── surfaceobject.py │ │ ├── torusobject.py │ │ ├── vectorobject.py │ │ └── volmeshobject.py │ ├── sets.py │ ├── timer.py │ ├── uninstall.py │ └── yak_template │ │ ├── icon.png │ │ └── manifest.yml └── compas_rhino │ ├── __init__.py │ ├── conduits │ ├── __init__.py │ ├── base.py │ ├── faces.py │ ├── labels.py │ ├── lines.py │ └── points.py │ ├── conversions │ ├── __init__.py │ ├── breps.py │ ├── curves.py │ ├── docobjects.py │ ├── exceptions.py │ ├── extrusions.py │ ├── geometry.py │ ├── meshes.py │ ├── shapes.py │ ├── surfaces.py │ └── transformations.py │ ├── devtools.py │ ├── drawing.py │ ├── geometry │ ├── __init__.py │ ├── booleans.py │ ├── brep │ │ ├── __init__.py │ │ ├── brep.py │ │ ├── builder.py │ │ ├── edge.py │ │ ├── face.py │ │ ├── loop.py │ │ ├── trim.py │ │ └── vertex.py │ ├── curves │ │ ├── __init__.py │ │ ├── curve.py │ │ └── nurbs.py │ ├── surfaces │ │ ├── __init__.py │ │ ├── nurbs.py │ │ └── surface.py │ ├── trimesh_curvature.py │ └── trimesh_slicing.py │ ├── install.py │ ├── install_plugin.py │ ├── install_with_pip.py │ ├── layers.py │ ├── objects.py │ ├── print_python_path.py │ ├── scene │ ├── __init__.py │ ├── boxobject.py │ ├── brepobject.py │ ├── capsuleobject.py │ ├── circleobject.py │ ├── coneobject.py │ ├── curveobject.py │ ├── cylinderobject.py │ ├── ellipseobject.py │ ├── frameobject.py │ ├── graphobject.py │ ├── helpers.py │ ├── lineobject.py │ ├── meshobject.py │ ├── planeobject.py │ ├── pointobject.py │ ├── polygonobject.py │ ├── polyhedronobject.py │ ├── polylineobject.py │ ├── sceneobject.py │ ├── sphereobject.py │ ├── surfaceobject.py │ ├── torusobject.py │ ├── vectorobject.py │ └── volmeshobject.py │ ├── ui.py │ ├── uninstall.py │ ├── uninstall_plugin.py │ └── utilities │ └── __init__.py ├── tasks.py └── tests ├── compas ├── colors │ ├── test_color.py │ └── test_colordict.py ├── compas_api.json ├── compas_api_ipy.json ├── data │ ├── test_copy.py │ ├── test_data.py │ ├── test_dataschema.py │ ├── test_json.py │ ├── test_json_dotnet.py │ ├── test_json_numpy.py │ ├── test_pickle.py │ ├── test_schema.py │ └── test_validators.py ├── datastructures │ ├── fixtures │ │ ├── non-planar.obj │ │ └── planar.obj │ ├── test_assembly.py │ ├── test_cell_network.py │ ├── test_datastructure.py │ ├── test_graph.py │ ├── test_hashtree.py │ ├── test_mesh.py │ ├── test_mesh_operations.py │ ├── test_mesh_subd.py │ ├── test_tree.py │ └── test_volmesh.py ├── donttest_api_completeness.py ├── donttest_api_stability.py ├── files │ ├── fixtures │ │ ├── bigX_sphere.ply │ │ ├── gltf │ │ │ ├── AnimatedMorphCube.glb │ │ │ ├── BoxInterleaved.glb │ │ │ ├── BoxTextured.glb │ │ │ ├── SimpleMeshes.gltf │ │ │ ├── SimpleMeshesEmbedded.gltf │ │ │ ├── SimpleMorph.gltf │ │ │ ├── SimpleSparseAccessor.gltf │ │ │ ├── SpecGlossVsMetalRough.glb │ │ │ ├── SpecularTest.glb │ │ │ ├── TriangleWithoutIndices.gltf │ │ │ └── triangle.bin │ │ ├── stl │ │ │ ├── ascii.stl │ │ │ ├── binary-1.stl │ │ │ └── binary-2.stl │ │ ├── triangle_binary.ply │ │ └── xml │ │ │ ├── basic.xml │ │ │ ├── default_nested_namespace.xml │ │ │ └── namespaces.xml │ ├── test_gltf.py │ ├── test_stl.py │ └── test_xml.py ├── fixtures │ ├── iotools │ │ ├── image.png │ │ └── text.txt │ └── topology │ │ └── vertices_faces.json ├── geometry │ ├── fixtures │ │ ├── bbox_points_00.json │ │ ├── bbox_rect_bad.obj │ │ └── bbox_rect_good.obj │ ├── test_bbox.py │ ├── test_box.py │ ├── test_capsule.py │ ├── test_cone.py │ ├── test_core.py │ ├── test_core_distance.py │ ├── test_core_predicates_2.py │ ├── test_core_predicates_3.py │ ├── test_core_queries.py │ ├── test_core_tangent.py │ ├── test_core_transformations.py │ ├── test_core_transformations_numpy.py │ ├── test_curves.py │ ├── test_curves_arc.py │ ├── test_curves_bezier.py │ ├── test_curves_circle.py │ ├── test_curves_ellipse.py │ ├── test_curves_hyperbola.py │ ├── test_curves_line.py │ ├── test_curves_parabola.py │ ├── test_curves_polyline.py │ ├── test_cylinder.py │ ├── test_frame.py │ ├── test_intersections.py │ ├── test_offset.py │ ├── test_plane.py │ ├── test_point.py │ ├── test_pointcloud.py │ ├── test_polygon.py │ ├── test_polyhedron.py │ ├── test_quaternion.py │ ├── test_shpere.py │ ├── test_surfaces.py │ ├── test_surfaces_cone.py │ ├── test_surfaces_cylinder.py │ ├── test_surfaces_plane.py │ ├── test_surfaces_sphere.py │ ├── test_surfaces_torus.py │ ├── test_torus.py │ ├── test_transformations │ │ ├── test_matrices.py │ │ ├── test_projection.py │ │ ├── test_reflection.py │ │ ├── test_rotation.py │ │ ├── test_scale.py │ │ ├── test_shear.py │ │ ├── test_transformation.py │ │ └── test_translation.py │ ├── test_triangulation_earclip.py │ └── test_vector.py ├── rpc │ └── test_rpc.py ├── scene │ ├── test_scene.py │ └── test_scene_serialisation.py ├── stubs.py ├── test_iotools.py ├── test_itertools.py ├── test_plugins.py ├── test_tolerance.py ├── topology │ ├── test_traversal.py │ └── test_unify_cycles.py └── utilities │ ├── test_azync.py │ └── test_decorators.py └── ipy_test_runner.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/ironpython.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/workflows/ironpython.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/publish_yak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/workflows/publish_yak.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/_images/COMPAS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/COMPAS.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas-robots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas-robots.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_3gs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_3gs.jpg -------------------------------------------------------------------------------- /docs/_images/extensions/compas_ags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_ags.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_assembly.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_cem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_cem.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_cgal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_cgal.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_cloud.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_cra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_cra.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_fab.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_fea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_fea.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_fem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_fem.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_gmsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_gmsh.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_libigl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_libigl.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_occ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_occ.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_pattern1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_pattern1.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_pattern2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_pattern2.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_rbe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_rbe.jpg -------------------------------------------------------------------------------- /docs/_images/extensions/compas_rrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_rrc.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_skeleton.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_slicer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_slicer.jpg -------------------------------------------------------------------------------- /docs/_images/extensions/compas_tia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_tia.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_tna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_tna.jpg -------------------------------------------------------------------------------- /docs/_images/extensions/compas_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_triangle.png -------------------------------------------------------------------------------- /docs/_images/extensions/compas_vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/extensions/compas_vol.png -------------------------------------------------------------------------------- /docs/_images/ghpython_custom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/ghpython_custom.jpg -------------------------------------------------------------------------------- /docs/_images/installation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/installation.gif -------------------------------------------------------------------------------- /docs/_images/rhino_scripteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/rhino_scripteditor.png -------------------------------------------------------------------------------- /docs/_images/tutorial/plotters_dynamic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/tutorial/plotters_dynamic.gif -------------------------------------------------------------------------------- /docs/_images/tutorial/plotters_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/tutorial/plotters_example.png -------------------------------------------------------------------------------- /docs/_images/tutorial/plotters_line-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/tutorial/plotters_line-options.png -------------------------------------------------------------------------------- /docs/_images/tutorial/plotters_point-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/tutorial/plotters_point-options.png -------------------------------------------------------------------------------- /docs/_images/tutorial/plotters_polygon-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/tutorial/plotters_polygon-options.png -------------------------------------------------------------------------------- /docs/_images/tutorial/plotters_vector-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/tutorial/plotters_vector-options.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_color-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_color-circle.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_lightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_lightness.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_maps.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_maps_from-one-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_maps_from-one-color.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_maps_from-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_maps_from-rgb.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_maps_from-three-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_maps_from-three-colors.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_maps_from-two-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_maps_from-two-colors.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.colors_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.colors_saturation.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.cellnetworks.example_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.cellnetworks.example_color.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.cellnetworks.example_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.cellnetworks.example_grey.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.cellnetworks.example_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.cellnetworks.example_hull.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.cycles.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.edge-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.edge-loop.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.edge-strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.edge-strip.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.face-neighbours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.face-neighbours.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.meshgrid-column0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.meshgrid-column0.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.meshgrid-column3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.meshgrid-column3.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.tubemesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.tubemesh.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.vertex-faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.vertex-faces.png -------------------------------------------------------------------------------- /docs/_images/userguide/basics.datastructures.meshes.vertex-neighbours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/basics.datastructures.meshes.vertex-neighbours.png -------------------------------------------------------------------------------- /docs/_images/userguide/cad.blender.visualisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/cad.blender.visualisation.png -------------------------------------------------------------------------------- /docs/_images/userguide/cad.grasshopper.gh_verify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/cad.grasshopper.gh_verify.jpg -------------------------------------------------------------------------------- /docs/_images/userguide/cad.grasshopper.ghpython_component.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/userguide/cad.grasshopper.ghpython_component.jpg -------------------------------------------------------------------------------- /docs/_images/vscode_git.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/_images/vscode_git.JPG -------------------------------------------------------------------------------- /docs/_static/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/compas.colors.html_colors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.colors.html_colors.rst -------------------------------------------------------------------------------- /docs/api/compas.colors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.colors.rst -------------------------------------------------------------------------------- /docs/api/compas.data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.data.rst -------------------------------------------------------------------------------- /docs/api/compas.datastructures.Assembly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.datastructures.Assembly.rst -------------------------------------------------------------------------------- /docs/api/compas.datastructures.CellNetwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.datastructures.CellNetwork.rst -------------------------------------------------------------------------------- /docs/api/compas.datastructures.Graph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.datastructures.Graph.rst -------------------------------------------------------------------------------- /docs/api/compas.datastructures.Mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.datastructures.Mesh.rst -------------------------------------------------------------------------------- /docs/api/compas.datastructures.Tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.datastructures.Tree.rst -------------------------------------------------------------------------------- /docs/api/compas.datastructures.VolMesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.datastructures.VolMesh.rst -------------------------------------------------------------------------------- /docs/api/compas.datastructures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.datastructures.rst -------------------------------------------------------------------------------- /docs/api/compas.files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.files.rst -------------------------------------------------------------------------------- /docs/api/compas.geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.geometry.rst -------------------------------------------------------------------------------- /docs/api/compas.itertools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.itertools.rst -------------------------------------------------------------------------------- /docs/api/compas.plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.plugins.rst -------------------------------------------------------------------------------- /docs/api/compas.rpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.rpc.rst -------------------------------------------------------------------------------- /docs/api/compas.scene.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.scene.rst -------------------------------------------------------------------------------- /docs/api/compas.tolerance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas.tolerance.rst -------------------------------------------------------------------------------- /docs/api/compas_blender.conversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_blender.conversions.rst -------------------------------------------------------------------------------- /docs/api/compas_blender.geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_blender.geometry.rst -------------------------------------------------------------------------------- /docs/api/compas_blender.scene.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_blender.scene.rst -------------------------------------------------------------------------------- /docs/api/compas_ghpython.components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_ghpython.components.rst -------------------------------------------------------------------------------- /docs/api/compas_ghpython.scene.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_ghpython.scene.rst -------------------------------------------------------------------------------- /docs/api/compas_rhino.conversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_rhino.conversions.rst -------------------------------------------------------------------------------- /docs/api/compas_rhino.geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_rhino.geometry.rst -------------------------------------------------------------------------------- /docs/api/compas_rhino.scene.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/compas_rhino.scene.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/devguide/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/code.rst -------------------------------------------------------------------------------- /docs/devguide/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/documentation.rst -------------------------------------------------------------------------------- /docs/devguide/dtypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/dtypes.rst -------------------------------------------------------------------------------- /docs/devguide/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/extensions.rst -------------------------------------------------------------------------------- /docs/devguide/ghcomponent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/ghcomponent.rst -------------------------------------------------------------------------------- /docs/devguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/index.rst -------------------------------------------------------------------------------- /docs/devguide/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/plugins.rst -------------------------------------------------------------------------------- /docs/devguide/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/setup.rst -------------------------------------------------------------------------------- /docs/devguide/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/devguide/workflow.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/sort__all__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/sort__all__.py -------------------------------------------------------------------------------- /docs/userguide/_plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/_plotter.py -------------------------------------------------------------------------------- /docs/userguide/advanced.hashtree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/advanced.hashtree.rst -------------------------------------------------------------------------------- /docs/userguide/advanced.pluggables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/advanced.pluggables.rst -------------------------------------------------------------------------------- /docs/userguide/advanced.rpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/advanced.rpc.rst -------------------------------------------------------------------------------- /docs/userguide/advanced.serialisation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/advanced.serialisation.rst -------------------------------------------------------------------------------- /docs/userguide/advanced.tolerance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/advanced.tolerance.rst -------------------------------------------------------------------------------- /docs/userguide/basics.colors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.colors.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.cellnetwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.cellnetwork.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.cellnetworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.cellnetworks.py -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.cells.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.cells.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.graphs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.graphs.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.meshes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.meshes.py -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.meshes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.meshes.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.trees.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.trees.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.volmeshes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.volmeshes.rst -------------------------------------------------------------------------------- /docs/userguide/basics.datastructures.volmeshes_example-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.datastructures.volmeshes_example-1.py -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.breps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.breps.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.curves_and_surfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.curves_and_surfaces.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.distance_and_membership.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.distance_and_membership.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.intersections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.intersections.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.planes_and_frames.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.planes_and_frames.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.points_and_vectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.points_and_vectors.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.polygons_and_polyhedrons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.polygons_and_polyhedrons.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.solids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.solids.rst -------------------------------------------------------------------------------- /docs/userguide/basics.geometry.transformations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.geometry.transformations.rst -------------------------------------------------------------------------------- /docs/userguide/basics.visualisation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/basics.visualisation.rst -------------------------------------------------------------------------------- /docs/userguide/cad.blender.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/cad.blender.rst -------------------------------------------------------------------------------- /docs/userguide/cad.grasshopper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/cad.grasshopper.rst -------------------------------------------------------------------------------- /docs/userguide/cad.other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/cad.other.rst -------------------------------------------------------------------------------- /docs/userguide/cad.rhino.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/cad.rhino.rst -------------------------------------------------------------------------------- /docs/userguide/cad.rhino8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/cad.rhino8.rst -------------------------------------------------------------------------------- /docs/userguide/citing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/citing.rst -------------------------------------------------------------------------------- /docs/userguide/firststeps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/firststeps.rst -------------------------------------------------------------------------------- /docs/userguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/index.rst -------------------------------------------------------------------------------- /docs/userguide/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/installation.rst -------------------------------------------------------------------------------- /docs/userguide/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/introduction.rst -------------------------------------------------------------------------------- /docs/userguide/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/license.rst -------------------------------------------------------------------------------- /docs/userguide/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/releases.rst -------------------------------------------------------------------------------- /docs/userguide/samples/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_lightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_lightness.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_maps.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_maps_from-one-color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_maps_from-one-color.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_maps_from-rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_maps_from-rgb.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_maps_from-rgb_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_maps_from-rgb_simple.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_maps_from-three-colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_maps_from-three-colors.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_maps_from-two-colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_maps_from-two-colors.py -------------------------------------------------------------------------------- /docs/userguide/samples/colors_saturation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/colors_saturation.py -------------------------------------------------------------------------------- /docs/userguide/samples/obb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/obb.py -------------------------------------------------------------------------------- /docs/userguide/samples/point_in_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/point_in_box.py -------------------------------------------------------------------------------- /docs/userguide/samples/quadmesh_planarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/samples/quadmesh_planarize.py -------------------------------------------------------------------------------- /docs/userguide/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/scene.py -------------------------------------------------------------------------------- /docs/userguide/whatsnext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/userguide/whatsnext.rst -------------------------------------------------------------------------------- /docs/write_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/docs/write_rst.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/compas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/__init__.py -------------------------------------------------------------------------------- /src/compas/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/__main__.py -------------------------------------------------------------------------------- /src/compas/_iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/_iotools.py -------------------------------------------------------------------------------- /src/compas/_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/_os.py -------------------------------------------------------------------------------- /src/compas/colors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/__init__.py -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/LICENSE -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/acton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/acton.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/actonS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/actonS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/bam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/bam.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/bamO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/bamO.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/bamako.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/bamako.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/bamakoS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/bamakoS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/batlow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/batlow.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/batlowK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/batlowK.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/batlowS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/batlowS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/batlowW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/batlowW.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/berlin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/berlin.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/bilbao.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/bilbao.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/bilbaoS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/bilbaoS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/broc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/broc.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/brocO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/brocO.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/buda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/buda.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/budaS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/budaS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/bukavu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/bukavu.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/cork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/cork.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/corkO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/corkO.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/davos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/davos.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/davosS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/davosS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/devon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/devon.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/devonS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/devonS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/fes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/fes.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/grayC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/grayC.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/grayCS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/grayCS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/hawaii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/hawaii.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/hawaiiS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/hawaiiS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/imola.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/imola.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/imolaS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/imolaS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/lajolla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/lajolla.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/lajollaS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/lajollaS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/lapaz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/lapaz.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/lapazS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/lapazS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/lisbon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/lisbon.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/nuuk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/nuuk.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/nuukS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/nuukS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/oleron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/oleron.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/oslo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/oslo.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/osloS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/osloS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/roma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/roma.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/romaO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/romaO.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/tofino.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/tofino.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/tokyo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/tokyo.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/tokyoS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/tokyoS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/turku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/turku.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/turkuS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/turkuS.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/vanimo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/vanimo.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/vik.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/vik.txt -------------------------------------------------------------------------------- /src/compas/colors/cmcrameri/vikO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/cmcrameri/vikO.txt -------------------------------------------------------------------------------- /src/compas/colors/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/color.py -------------------------------------------------------------------------------- /src/compas/colors/colordict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/colordict.py -------------------------------------------------------------------------------- /src/compas/colors/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/colormap.py -------------------------------------------------------------------------------- /src/compas/colors/html_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/html_colors.py -------------------------------------------------------------------------------- /src/compas/colors/mpl_colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/colors/mpl_colormap.py -------------------------------------------------------------------------------- /src/compas/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/__init__.py -------------------------------------------------------------------------------- /src/compas/data/coercion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/coercion.py -------------------------------------------------------------------------------- /src/compas/data/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/data.py -------------------------------------------------------------------------------- /src/compas/data/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/encoders.py -------------------------------------------------------------------------------- /src/compas/data/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/exceptions.py -------------------------------------------------------------------------------- /src/compas/data/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/json.py -------------------------------------------------------------------------------- /src/compas/data/samples/boxes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/boxes.obj -------------------------------------------------------------------------------- /src/compas/data/samples/butt_model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/butt_model.obj -------------------------------------------------------------------------------- /src/compas/data/samples/cellnetwork_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/cellnetwork_example.json -------------------------------------------------------------------------------- /src/compas/data/samples/cone.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/cone.stl -------------------------------------------------------------------------------- /src/compas/data/samples/cube.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/cube.off -------------------------------------------------------------------------------- /src/compas/data/samples/cube_ascii.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/cube_ascii.stl -------------------------------------------------------------------------------- /src/compas/data/samples/cube_binary.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/cube_binary.stl -------------------------------------------------------------------------------- /src/compas/data/samples/cube_binary_2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/cube_binary_2.stl -------------------------------------------------------------------------------- /src/compas/data/samples/doosabin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/doosabin.json -------------------------------------------------------------------------------- /src/compas/data/samples/faces.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/faces.obj -------------------------------------------------------------------------------- /src/compas/data/samples/faces_big.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/faces_big.obj -------------------------------------------------------------------------------- /src/compas/data/samples/faces_reversed.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/faces_reversed.obj -------------------------------------------------------------------------------- /src/compas/data/samples/fink.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/fink.obj -------------------------------------------------------------------------------- /src/compas/data/samples/grid_irregular.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/grid_irregular.obj -------------------------------------------------------------------------------- /src/compas/data/samples/hypar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/hypar.obj -------------------------------------------------------------------------------- /src/compas/data/samples/lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/lines.json -------------------------------------------------------------------------------- /src/compas/data/samples/lines.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/lines.obj -------------------------------------------------------------------------------- /src/compas/data/samples/lines_big.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/lines_big.obj -------------------------------------------------------------------------------- /src/compas/data/samples/lines_bigger.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/lines_bigger.obj -------------------------------------------------------------------------------- /src/compas/data/samples/lines_noleaves.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/lines_noleaves.obj -------------------------------------------------------------------------------- /src/compas/data/samples/mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/mesh.obj -------------------------------------------------------------------------------- /src/compas/data/samples/mesh_100_faces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/mesh_100_faces.json -------------------------------------------------------------------------------- /src/compas/data/samples/mesh_110_faces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/mesh_110_faces.json -------------------------------------------------------------------------------- /src/compas/data/samples/open_edges.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/open_edges.obj -------------------------------------------------------------------------------- /src/compas/data/samples/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/point.json -------------------------------------------------------------------------------- /src/compas/data/samples/quadmesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/quadmesh.obj -------------------------------------------------------------------------------- /src/compas/data/samples/quadmesh_planar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/quadmesh_planar.obj -------------------------------------------------------------------------------- /src/compas/data/samples/saddle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/saddle.obj -------------------------------------------------------------------------------- /src/compas/data/samples/spline.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/spline.obj -------------------------------------------------------------------------------- /src/compas/data/samples/tubemesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/tubemesh.json -------------------------------------------------------------------------------- /src/compas/data/samples/tubemesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/tubemesh.obj -------------------------------------------------------------------------------- /src/compas/data/samples/tubemesh.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/tubemesh.off -------------------------------------------------------------------------------- /src/compas/data/samples/tubemesh.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/samples/tubemesh.ply -------------------------------------------------------------------------------- /src/compas/data/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/schema.py -------------------------------------------------------------------------------- /src/compas/data/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/data/validators.py -------------------------------------------------------------------------------- /src/compas/datastructures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/__init__.py -------------------------------------------------------------------------------- /src/compas/datastructures/_mutablemapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/_mutablemapping.py -------------------------------------------------------------------------------- /src/compas/datastructures/assembly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/assembly/assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/assembly/assembly.py -------------------------------------------------------------------------------- /src/compas/datastructures/assembly/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/assembly/exceptions.py -------------------------------------------------------------------------------- /src/compas/datastructures/assembly/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/assembly/part.py -------------------------------------------------------------------------------- /src/compas/datastructures/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/attributes.py -------------------------------------------------------------------------------- /src/compas/datastructures/cell_network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/cell_network/cell_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/cell_network/cell_network.py -------------------------------------------------------------------------------- /src/compas/datastructures/datastructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/datastructure.py -------------------------------------------------------------------------------- /src/compas/datastructures/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/graph/duality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/graph/duality.py -------------------------------------------------------------------------------- /src/compas/datastructures/graph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/graph/graph.py -------------------------------------------------------------------------------- /src/compas/datastructures/graph/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/graph/operations/join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/graph/operations/join.py -------------------------------------------------------------------------------- /src/compas/datastructures/graph/operations/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/graph/operations/split.py -------------------------------------------------------------------------------- /src/compas/datastructures/graph/planarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/graph/planarity.py -------------------------------------------------------------------------------- /src/compas/datastructures/graph/smoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/graph/smoothing.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/conway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/conway.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/duality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/duality.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/mesh.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/collapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/operations/collapse.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/extrude.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/operations/insert.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/operations/merge.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/operations/split.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/substitute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/operations/substitute.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/operations/swap.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/operations/weld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/operations/weld.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/remesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/remesh.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/slice.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/smoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/smoothing.py -------------------------------------------------------------------------------- /src/compas/datastructures/mesh/subdivision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/mesh/subdivision.py -------------------------------------------------------------------------------- /src/compas/datastructures/tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/tree/hashtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/tree/hashtree.py -------------------------------------------------------------------------------- /src/compas/datastructures/tree/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/tree/tree.py -------------------------------------------------------------------------------- /src/compas/datastructures/volmesh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/datastructures/volmesh/volmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/datastructures/volmesh/volmesh.py -------------------------------------------------------------------------------- /src/compas/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/__init__.py -------------------------------------------------------------------------------- /src/compas/files/_xml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/files/_xml/xml_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/_xml/xml_cli.py -------------------------------------------------------------------------------- /src/compas/files/_xml/xml_cpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/_xml/xml_cpython.py -------------------------------------------------------------------------------- /src/compas/files/_xml/xml_pre_38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/_xml/xml_pre_38.py -------------------------------------------------------------------------------- /src/compas/files/_xml/xml_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/_xml/xml_shared.py -------------------------------------------------------------------------------- /src/compas/files/gltf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/files/gltf/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/constants.py -------------------------------------------------------------------------------- /src/compas/files/gltf/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/data_classes.py -------------------------------------------------------------------------------- /src/compas/files/gltf/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/extensions.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_children.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_children.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_content.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_exporter.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_mesh.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_node.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_parser.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_reader.py -------------------------------------------------------------------------------- /src/compas/files/gltf/gltf_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/gltf_scene.py -------------------------------------------------------------------------------- /src/compas/files/gltf/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/gltf/helpers.py -------------------------------------------------------------------------------- /src/compas/files/obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/obj.py -------------------------------------------------------------------------------- /src/compas/files/off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/off.py -------------------------------------------------------------------------------- /src/compas/files/ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/ply.py -------------------------------------------------------------------------------- /src/compas/files/stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/stl.py -------------------------------------------------------------------------------- /src/compas/files/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/files/xml.py -------------------------------------------------------------------------------- /src/compas/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/__init__.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/geometry/_core/_algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/_algebra.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/angles.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/centroids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/centroids.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/distance.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/normals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/normals.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/nurbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/nurbs.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/predicates_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/predicates_2.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/predicates_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/predicates_3.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/quaternions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/quaternions.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/size.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/tangent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/tangent.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/transformations.py -------------------------------------------------------------------------------- /src/compas/geometry/_core/transformations_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/_core/transformations_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/bbox.py -------------------------------------------------------------------------------- /src/compas/geometry/bbox_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/bbox_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/bestfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/bestfit.py -------------------------------------------------------------------------------- /src/compas/geometry/bestfit_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/bestfit_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/booleans.py -------------------------------------------------------------------------------- /src/compas/geometry/booleans_shapely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/booleans_shapely.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/__init__.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/brep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/brep.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/edge.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/errors.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/face.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/loop.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/trim.py -------------------------------------------------------------------------------- /src/compas/geometry/brep/vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/brep/vertex.py -------------------------------------------------------------------------------- /src/compas/geometry/contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/contours.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/geometry/curves/arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/arc.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/bezier.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/circle.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/conic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/conic.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/curve.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/ellipse.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/hyperbola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/hyperbola.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/line.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/nurbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/nurbs.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/parabola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/parabola.py -------------------------------------------------------------------------------- /src/compas/geometry/curves/polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/curves/polyline.py -------------------------------------------------------------------------------- /src/compas/geometry/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/frame.py -------------------------------------------------------------------------------- /src/compas/geometry/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/geometry.py -------------------------------------------------------------------------------- /src/compas/geometry/hull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/hull.py -------------------------------------------------------------------------------- /src/compas/geometry/hull_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/hull_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/icp_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/icp_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/interpolation_barycentric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/interpolation_barycentric.py -------------------------------------------------------------------------------- /src/compas/geometry/interpolation_coons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/interpolation_coons.py -------------------------------------------------------------------------------- /src/compas/geometry/interpolation_tweening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/interpolation_tweening.py -------------------------------------------------------------------------------- /src/compas/geometry/intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/intersection.py -------------------------------------------------------------------------------- /src/compas/geometry/intersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/intersections.py -------------------------------------------------------------------------------- /src/compas/geometry/kdtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/kdtree.py -------------------------------------------------------------------------------- /src/compas/geometry/offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/offset.py -------------------------------------------------------------------------------- /src/compas/geometry/pca_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/pca_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/plane.py -------------------------------------------------------------------------------- /src/compas/geometry/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/point.py -------------------------------------------------------------------------------- /src/compas/geometry/pointcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/pointcloud.py -------------------------------------------------------------------------------- /src/compas/geometry/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/polygon.py -------------------------------------------------------------------------------- /src/compas/geometry/polyhedron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/polyhedron.py -------------------------------------------------------------------------------- /src/compas/geometry/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/projection.py -------------------------------------------------------------------------------- /src/compas/geometry/quadmesh_planarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/quadmesh_planarize.py -------------------------------------------------------------------------------- /src/compas/geometry/quadmesh_planarize_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/quadmesh_planarize_none.py -------------------------------------------------------------------------------- /src/compas/geometry/quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/quaternion.py -------------------------------------------------------------------------------- /src/compas/geometry/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/reflection.py -------------------------------------------------------------------------------- /src/compas/geometry/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/rotation.py -------------------------------------------------------------------------------- /src/compas/geometry/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/scale.py -------------------------------------------------------------------------------- /src/compas/geometry/shapes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/geometry/shapes/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shapes/box.py -------------------------------------------------------------------------------- /src/compas/geometry/shapes/capsule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shapes/capsule.py -------------------------------------------------------------------------------- /src/compas/geometry/shapes/cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shapes/cone.py -------------------------------------------------------------------------------- /src/compas/geometry/shapes/cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shapes/cylinder.py -------------------------------------------------------------------------------- /src/compas/geometry/shapes/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shapes/shape.py -------------------------------------------------------------------------------- /src/compas/geometry/shapes/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shapes/sphere.py -------------------------------------------------------------------------------- /src/compas/geometry/shapes/torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shapes/torus.py -------------------------------------------------------------------------------- /src/compas/geometry/shear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/shear.py -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/conical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/surfaces/conical.py -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/cylindrical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/surfaces/cylindrical.py -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/extrusion.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/nurbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/surfaces/nurbs.py -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/planar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/surfaces/planar.py -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/revolution.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/spherical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/surfaces/spherical.py -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/surfaces/surface.py -------------------------------------------------------------------------------- /src/compas/geometry/surfaces/toroidal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/surfaces/toroidal.py -------------------------------------------------------------------------------- /src/compas/geometry/transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/transformation.py -------------------------------------------------------------------------------- /src/compas/geometry/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/translation.py -------------------------------------------------------------------------------- /src/compas/geometry/triangulation_delaunay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/triangulation_delaunay.py -------------------------------------------------------------------------------- /src/compas/geometry/triangulation_earclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/triangulation_earclip.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_curvature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_curvature.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_descent_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_descent_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_geodistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_geodistance.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_gradient_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_gradient_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_isolines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_isolines.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_matrices.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_matrices_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_matrices_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_parametrisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_parametrisation.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_pull_points_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_pull_points_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_remeshing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_remeshing.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_samplepoints_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_samplepoints_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_slicing.py -------------------------------------------------------------------------------- /src/compas/geometry/trimesh_smoothing_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/trimesh_smoothing_numpy.py -------------------------------------------------------------------------------- /src/compas/geometry/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/geometry/vector.py -------------------------------------------------------------------------------- /src/compas/itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/itertools.py -------------------------------------------------------------------------------- /src/compas/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/linalg.py -------------------------------------------------------------------------------- /src/compas/matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/matrices.py -------------------------------------------------------------------------------- /src/compas/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/plugins.py -------------------------------------------------------------------------------- /src/compas/rpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/__init__.py -------------------------------------------------------------------------------- /src/compas/rpc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/__main__.py -------------------------------------------------------------------------------- /src/compas/rpc/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/dispatcher.py -------------------------------------------------------------------------------- /src/compas/rpc/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/errors.py -------------------------------------------------------------------------------- /src/compas/rpc/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/proxy.py -------------------------------------------------------------------------------- /src/compas/rpc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/server.py -------------------------------------------------------------------------------- /src/compas/rpc/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/rpc/services/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/services/default.py -------------------------------------------------------------------------------- /src/compas/rpc/services/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/rpc/services/watcher.py -------------------------------------------------------------------------------- /src/compas/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/__init__.py -------------------------------------------------------------------------------- /src/compas/scene/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/context.py -------------------------------------------------------------------------------- /src/compas/scene/curveobject.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/scene/descriptors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/scene/descriptors/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/descriptors/attribute.py -------------------------------------------------------------------------------- /src/compas/scene/descriptors/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/descriptors/color.py -------------------------------------------------------------------------------- /src/compas/scene/descriptors/colordict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/descriptors/colordict.py -------------------------------------------------------------------------------- /src/compas/scene/descriptors/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/descriptors/protocol.py -------------------------------------------------------------------------------- /src/compas/scene/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/exceptions.py -------------------------------------------------------------------------------- /src/compas/scene/frameobject.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/scene/geometryobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/geometryobject.py -------------------------------------------------------------------------------- /src/compas/scene/graphobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/graphobject.py -------------------------------------------------------------------------------- /src/compas/scene/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/group.py -------------------------------------------------------------------------------- /src/compas/scene/meshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/meshobject.py -------------------------------------------------------------------------------- /src/compas/scene/planeobject.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/scene/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/scene.py -------------------------------------------------------------------------------- /src/compas/scene/sceneobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/sceneobject.py -------------------------------------------------------------------------------- /src/compas/scene/shapeobject.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/scene/surfaceobject.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas/scene/volmeshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/scene/volmeshobject.py -------------------------------------------------------------------------------- /src/compas/tolerance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/tolerance.py -------------------------------------------------------------------------------- /src/compas/topology/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/topology/__init__.py -------------------------------------------------------------------------------- /src/compas/topology/combinatorics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/topology/combinatorics.py -------------------------------------------------------------------------------- /src/compas/topology/connectivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/topology/connectivity.py -------------------------------------------------------------------------------- /src/compas/topology/orientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/topology/orientation.py -------------------------------------------------------------------------------- /src/compas/topology/traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/topology/traversal.py -------------------------------------------------------------------------------- /src/compas/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/utilities/__init__.py -------------------------------------------------------------------------------- /src/compas/utilities/azync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/utilities/azync.py -------------------------------------------------------------------------------- /src/compas/utilities/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/utilities/datetime.py -------------------------------------------------------------------------------- /src/compas/utilities/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/utilities/decorators.py -------------------------------------------------------------------------------- /src/compas/utilities/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/utilities/remote.py -------------------------------------------------------------------------------- /src/compas/utilities/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas/utilities/ssh.py -------------------------------------------------------------------------------- /src/compas_blender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/__init__.py -------------------------------------------------------------------------------- /src/compas_blender/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/collections.py -------------------------------------------------------------------------------- /src/compas_blender/conversions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/conversions/__init__.py -------------------------------------------------------------------------------- /src/compas_blender/conversions/breps.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_blender/conversions/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/conversions/colors.py -------------------------------------------------------------------------------- /src/compas_blender/conversions/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/conversions/curves.py -------------------------------------------------------------------------------- /src/compas_blender/conversions/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/conversions/geometry.py -------------------------------------------------------------------------------- /src/compas_blender/conversions/meshes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/conversions/meshes.py -------------------------------------------------------------------------------- /src/compas_blender/conversions/surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/conversions/surfaces.py -------------------------------------------------------------------------------- /src/compas_blender/conversions/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/conversions/transformations.py -------------------------------------------------------------------------------- /src/compas_blender/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/data.py -------------------------------------------------------------------------------- /src/compas_blender/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/drawing.py -------------------------------------------------------------------------------- /src/compas_blender/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/geometry/__init__.py -------------------------------------------------------------------------------- /src/compas_blender/geometry/booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/geometry/booleans.py -------------------------------------------------------------------------------- /src/compas_blender/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/install.py -------------------------------------------------------------------------------- /src/compas_blender/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/objects.py -------------------------------------------------------------------------------- /src/compas_blender/print_python_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/print_python_path.py -------------------------------------------------------------------------------- /src/compas_blender/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/__init__.py -------------------------------------------------------------------------------- /src/compas_blender/scene/boxobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/boxobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/circleobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/circleobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/curveobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/curveobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/frameobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/frameobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/graphobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/graphobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/lineobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/lineobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/meshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/meshobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/planeobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/planeobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/pointcloudobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/pointcloudobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/pointobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/pointobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/polygonobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/polygonobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/polyhedronobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/polyhedronobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/polylineobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/polylineobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/sceneobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/sceneobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/shapeobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/shapeobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/surfaceobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/surfaceobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/vectorobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/vectorobject.py -------------------------------------------------------------------------------- /src/compas_blender/scene/volmeshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/scene/volmeshobject.py -------------------------------------------------------------------------------- /src/compas_blender/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_blender/utilities/__init__.py -------------------------------------------------------------------------------- /src/compas_ghpython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/__init__.py -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_FromJson/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_FromJson/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_FromJson/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_FromJson/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_FromJson/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_FromJson/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_Info/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_Info/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_Info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_Info/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_Info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_Info/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_RpcCall/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_RpcCall/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_RpcCall/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_RpcCall/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_RpcCall/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_RpcCall/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_ToJson/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_ToJson/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_ToJson/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_ToJson/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_ToJson/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_ToJson/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_ToRhinoGeometry/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_ToRhinoGeometry/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_ToRhinoGeometry/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_ToRhinoGeometry/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components/Compas_ToRhinoGeometry/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/Compas_ToRhinoGeometry/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components/__init__.py -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_FromJson/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_FromJson/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_FromJson/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_FromJson/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_FromJson/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_FromJson/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_Info/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_Info/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_Info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_Info/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_Info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_Info/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_RpcCall/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_RpcCall/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_RpcCall/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_RpcCall/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_RpcCall/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_RpcCall/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_ToJson/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_ToJson/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_ToJson/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_ToJson/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_ToJson/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_ToJson/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_ToRhinoGeometry/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_ToRhinoGeometry/code.py -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_ToRhinoGeometry/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_ToRhinoGeometry/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/components_cpython/Compas_ToRhinoGeometry/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/components_cpython/Compas_ToRhinoGeometry/metadata.json -------------------------------------------------------------------------------- /src/compas_ghpython/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/drawing.py -------------------------------------------------------------------------------- /src/compas_ghpython/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/install.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/__init__.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/boxobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/boxobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/brepobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/brepobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/capsuleobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/capsuleobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/circleobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/circleobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/coneobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/coneobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/curveobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/curveobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/cylinderobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/cylinderobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/ellipseobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/ellipseobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/frameobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/frameobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/graphobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/graphobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/lineobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/lineobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/meshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/meshobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/planeobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/planeobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/pointobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/pointobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/polygonobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/polygonobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/polyhedronobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/polyhedronobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/polylineobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/polylineobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/sceneobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/sceneobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/sphereobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/sphereobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/surfaceobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/surfaceobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/torusobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/torusobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/vectorobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/vectorobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/scene/volmeshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/scene/volmeshobject.py -------------------------------------------------------------------------------- /src/compas_ghpython/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/sets.py -------------------------------------------------------------------------------- /src/compas_ghpython/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/timer.py -------------------------------------------------------------------------------- /src/compas_ghpython/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/uninstall.py -------------------------------------------------------------------------------- /src/compas_ghpython/yak_template/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/yak_template/icon.png -------------------------------------------------------------------------------- /src/compas_ghpython/yak_template/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_ghpython/yak_template/manifest.yml -------------------------------------------------------------------------------- /src/compas_rhino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/conduits/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conduits/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/conduits/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conduits/base.py -------------------------------------------------------------------------------- /src/compas_rhino/conduits/faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conduits/faces.py -------------------------------------------------------------------------------- /src/compas_rhino/conduits/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conduits/labels.py -------------------------------------------------------------------------------- /src/compas_rhino/conduits/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conduits/lines.py -------------------------------------------------------------------------------- /src/compas_rhino/conduits/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conduits/points.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/breps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/breps.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/curves.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/docobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/docobjects.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/exceptions.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/extrusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/extrusions.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/geometry.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/meshes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/meshes.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/shapes.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/surfaces.py -------------------------------------------------------------------------------- /src/compas_rhino/conversions/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/conversions/transformations.py -------------------------------------------------------------------------------- /src/compas_rhino/devtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/devtools.py -------------------------------------------------------------------------------- /src/compas_rhino/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/drawing.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/booleans.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/brep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/brep.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/builder.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/edge.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/face.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/loop.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/trim.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/brep/vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/brep/vertex.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/curves/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/curves/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/curves/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/curves/curve.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/curves/nurbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/curves/nurbs.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/surfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/surfaces/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/surfaces/nurbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/surfaces/nurbs.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/surfaces/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/surfaces/surface.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/trimesh_curvature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/trimesh_curvature.py -------------------------------------------------------------------------------- /src/compas_rhino/geometry/trimesh_slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/geometry/trimesh_slicing.py -------------------------------------------------------------------------------- /src/compas_rhino/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/install.py -------------------------------------------------------------------------------- /src/compas_rhino/install_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/install_plugin.py -------------------------------------------------------------------------------- /src/compas_rhino/install_with_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/install_with_pip.py -------------------------------------------------------------------------------- /src/compas_rhino/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/layers.py -------------------------------------------------------------------------------- /src/compas_rhino/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/objects.py -------------------------------------------------------------------------------- /src/compas_rhino/print_python_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/print_python_path.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/__init__.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/boxobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/boxobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/brepobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/brepobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/capsuleobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/capsuleobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/circleobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/circleobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/coneobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/coneobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/curveobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/curveobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/cylinderobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/cylinderobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/ellipseobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/ellipseobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/frameobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/frameobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/graphobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/graphobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/helpers.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/lineobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/lineobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/meshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/meshobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/planeobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/planeobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/pointobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/pointobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/polygonobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/polygonobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/polyhedronobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/polyhedronobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/polylineobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/polylineobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/sceneobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/sceneobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/sphereobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/sphereobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/surfaceobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/surfaceobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/torusobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/torusobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/vectorobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/vectorobject.py -------------------------------------------------------------------------------- /src/compas_rhino/scene/volmeshobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/scene/volmeshobject.py -------------------------------------------------------------------------------- /src/compas_rhino/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/ui.py -------------------------------------------------------------------------------- /src/compas_rhino/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/uninstall.py -------------------------------------------------------------------------------- /src/compas_rhino/uninstall_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/uninstall_plugin.py -------------------------------------------------------------------------------- /src/compas_rhino/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/src/compas_rhino/utilities/__init__.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/compas/colors/test_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/colors/test_color.py -------------------------------------------------------------------------------- /tests/compas/colors/test_colordict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/colors/test_colordict.py -------------------------------------------------------------------------------- /tests/compas/compas_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/compas_api.json -------------------------------------------------------------------------------- /tests/compas/compas_api_ipy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/compas_api_ipy.json -------------------------------------------------------------------------------- /tests/compas/data/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_copy.py -------------------------------------------------------------------------------- /tests/compas/data/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_data.py -------------------------------------------------------------------------------- /tests/compas/data/test_dataschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_dataschema.py -------------------------------------------------------------------------------- /tests/compas/data/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_json.py -------------------------------------------------------------------------------- /tests/compas/data/test_json_dotnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_json_dotnet.py -------------------------------------------------------------------------------- /tests/compas/data/test_json_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_json_numpy.py -------------------------------------------------------------------------------- /tests/compas/data/test_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_pickle.py -------------------------------------------------------------------------------- /tests/compas/data/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_schema.py -------------------------------------------------------------------------------- /tests/compas/data/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/data/test_validators.py -------------------------------------------------------------------------------- /tests/compas/datastructures/fixtures/non-planar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/fixtures/non-planar.obj -------------------------------------------------------------------------------- /tests/compas/datastructures/fixtures/planar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/fixtures/planar.obj -------------------------------------------------------------------------------- /tests/compas/datastructures/test_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_assembly.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_cell_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_cell_network.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_datastructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_datastructure.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_graph.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_hashtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_hashtree.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_mesh.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_mesh_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_mesh_operations.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_mesh_subd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_mesh_subd.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_tree.py -------------------------------------------------------------------------------- /tests/compas/datastructures/test_volmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/datastructures/test_volmesh.py -------------------------------------------------------------------------------- /tests/compas/donttest_api_completeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/donttest_api_completeness.py -------------------------------------------------------------------------------- /tests/compas/donttest_api_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/donttest_api_stability.py -------------------------------------------------------------------------------- /tests/compas/files/fixtures/bigX_sphere.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/bigX_sphere.ply -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/AnimatedMorphCube.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/AnimatedMorphCube.glb -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/BoxInterleaved.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/BoxInterleaved.glb -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/BoxTextured.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/BoxTextured.glb -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/SimpleMeshes.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/SimpleMeshes.gltf -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/SimpleMeshesEmbedded.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/SimpleMeshesEmbedded.gltf -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/SimpleMorph.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/SimpleMorph.gltf -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/SimpleSparseAccessor.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/SimpleSparseAccessor.gltf -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/SpecGlossVsMetalRough.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/SpecGlossVsMetalRough.glb -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/SpecularTest.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/SpecularTest.glb -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/TriangleWithoutIndices.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/TriangleWithoutIndices.gltf -------------------------------------------------------------------------------- /tests/compas/files/fixtures/gltf/triangle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/gltf/triangle.bin -------------------------------------------------------------------------------- /tests/compas/files/fixtures/stl/ascii.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/stl/ascii.stl -------------------------------------------------------------------------------- /tests/compas/files/fixtures/stl/binary-1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/stl/binary-1.stl -------------------------------------------------------------------------------- /tests/compas/files/fixtures/stl/binary-2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/stl/binary-2.stl -------------------------------------------------------------------------------- /tests/compas/files/fixtures/triangle_binary.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/triangle_binary.ply -------------------------------------------------------------------------------- /tests/compas/files/fixtures/xml/basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/xml/basic.xml -------------------------------------------------------------------------------- /tests/compas/files/fixtures/xml/default_nested_namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/xml/default_nested_namespace.xml -------------------------------------------------------------------------------- /tests/compas/files/fixtures/xml/namespaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/fixtures/xml/namespaces.xml -------------------------------------------------------------------------------- /tests/compas/files/test_gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/test_gltf.py -------------------------------------------------------------------------------- /tests/compas/files/test_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/test_stl.py -------------------------------------------------------------------------------- /tests/compas/files/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/files/test_xml.py -------------------------------------------------------------------------------- /tests/compas/fixtures/iotools/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/fixtures/iotools/image.png -------------------------------------------------------------------------------- /tests/compas/fixtures/iotools/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/fixtures/iotools/text.txt -------------------------------------------------------------------------------- /tests/compas/fixtures/topology/vertices_faces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/fixtures/topology/vertices_faces.json -------------------------------------------------------------------------------- /tests/compas/geometry/fixtures/bbox_points_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/fixtures/bbox_points_00.json -------------------------------------------------------------------------------- /tests/compas/geometry/fixtures/bbox_rect_bad.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/fixtures/bbox_rect_bad.obj -------------------------------------------------------------------------------- /tests/compas/geometry/fixtures/bbox_rect_good.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/fixtures/bbox_rect_good.obj -------------------------------------------------------------------------------- /tests/compas/geometry/test_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_bbox.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_box.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_capsule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_capsule.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_cone.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core_distance.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core_predicates_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core_predicates_2.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core_predicates_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core_predicates_3.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core_queries.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core_tangent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core_tangent.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core_transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core_transformations.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_core_transformations_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_core_transformations_numpy.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_arc.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_bezier.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_circle.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_ellipse.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_hyperbola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_hyperbola.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_line.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_parabola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_parabola.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_curves_polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_curves_polyline.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_cylinder.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_frame.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_intersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_intersections.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_offset.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_plane.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_point.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_pointcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_pointcloud.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_polygon.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_polyhedron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_polyhedron.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_quaternion.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_shpere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_shpere.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_surfaces.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_surfaces_cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_surfaces_cone.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_surfaces_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_surfaces_cylinder.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_surfaces_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_surfaces_plane.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_surfaces_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_surfaces_sphere.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_surfaces_torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_surfaces_torus.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_torus.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_matrices.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_projection.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_reflection.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_rotation.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_scale.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_shear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_shear.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_transformation.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_transformations/test_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_transformations/test_translation.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_triangulation_earclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_triangulation_earclip.py -------------------------------------------------------------------------------- /tests/compas/geometry/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/geometry/test_vector.py -------------------------------------------------------------------------------- /tests/compas/rpc/test_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/rpc/test_rpc.py -------------------------------------------------------------------------------- /tests/compas/scene/test_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/scene/test_scene.py -------------------------------------------------------------------------------- /tests/compas/scene/test_scene_serialisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/scene/test_scene_serialisation.py -------------------------------------------------------------------------------- /tests/compas/stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/stubs.py -------------------------------------------------------------------------------- /tests/compas/test_iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/test_iotools.py -------------------------------------------------------------------------------- /tests/compas/test_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/test_itertools.py -------------------------------------------------------------------------------- /tests/compas/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/test_plugins.py -------------------------------------------------------------------------------- /tests/compas/test_tolerance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/test_tolerance.py -------------------------------------------------------------------------------- /tests/compas/topology/test_traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/topology/test_traversal.py -------------------------------------------------------------------------------- /tests/compas/topology/test_unify_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/topology/test_unify_cycles.py -------------------------------------------------------------------------------- /tests/compas/utilities/test_azync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/utilities/test_azync.py -------------------------------------------------------------------------------- /tests/compas/utilities/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/compas/utilities/test_decorators.py -------------------------------------------------------------------------------- /tests/ipy_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas/HEAD/tests/ipy_test_runner.py --------------------------------------------------------------------------------