├── .bumpversion.cfg ├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── data └── PLACEHOLDER ├── docs ├── .buildinfo ├── .doctrees │ ├── 00_introduction.doctree │ ├── 01_getting_started.doctree │ ├── 02_overview.doctree │ ├── 03_examples.doctree │ ├── 04_api.doctree │ ├── 05_license.doctree │ ├── 06_citing.doctree │ ├── 07_publications.doctree │ ├── api │ │ ├── compas_singular.algorithms.doctree │ │ ├── compas_singular.datastructures.doctree │ │ ├── compas_singular.doctree │ │ ├── compas_singular.geometry.doctree │ │ ├── compas_singular.rhino.doctree │ │ ├── compas_singular.topology.doctree │ │ ├── compas_singular.utilities.doctree │ │ ├── generated │ │ │ ├── compas_singular.algorithms.DecompositionRemap.__init__.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.add_face.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.add_vertex.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.area.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.boundaries.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.boundary_kinks.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.bounding_box.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.bounding_box_xy.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.branches.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_compas_singularity_to_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_compas_singularity_to_compas_singularity.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_boundary_kinks.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_collapsed_boundaries.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_flipped_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.centroid.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.clear.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.collapse_edge.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.compas_singular_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.compas_singular_points.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.connected_components.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.copy.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.corner_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.corner_vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.cull_vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.cut.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_curves.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_delaunay.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_mesh.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polyline.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polylines.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polysurface.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_skeleton.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.delete_face.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.delete_vertex.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.dual.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_coordinates.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_direction.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_length.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_midpoint.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_point.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_vector.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edges.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_on_boundaries.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_where.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.euler.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_area.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_aspect_ratio.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_center.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_centroid.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_coordinates.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_corners.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_curvature.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_degree.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_flatness.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_halfedges.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_max_degree.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_min_degree.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_neighborhood.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_neighbors.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_normal.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_skewness.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertex_descendant.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_where.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.flip_cycles.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_data.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_json.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_lines.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_mesh.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_obj.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_off.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_pickle.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_ply.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_points.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polygons.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polyhedron.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polylines.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_shape.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_skeleton.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_stl.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.genus.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_face.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_face_vertex.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_vertex.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.gkey_key.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.halfedge_face.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.has_edge.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.has_face.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.has_halfedge.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.has_vertex.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.index_key.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.insert_vertex.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_connected.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_empty.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_face_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_manifold.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_orientable.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_quadmesh.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_regular.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_trimesh.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_valid.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_vertex_connected.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.join.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.key_gkey.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.key_index.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.lines.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.normal.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_edges.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces_wip.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.smooth_area.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.smooth_centroid.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.solve_triangular_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.split_edge.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.split_face.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.split_quads_with_poles.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.split_vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.store_pole_data.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.summary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_data.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_json.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_lines.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_obj.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_off.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_pickle.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_ply.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_points.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_polygons.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_polylines.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_quadmesh.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_stl.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_trimesh.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.transform.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.transformed.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.unify_cycles.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_edge_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_face_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_face_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_area.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_centroid.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_coordinates.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_curvature.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_degree.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_faces.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_laplacian.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_max_degree.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_min_degree.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighborhood.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighbors.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_normal.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_attribute.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_attributes.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_where.doctree │ │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.__init__.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.add_face.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.add_vertex.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.area.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.boundaries.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.boundary_kinks.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.bounding_box.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.bounding_box_xy.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.branches.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.centroid.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.clear.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.collapse_edge.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.compas_singular_faces.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.compas_singular_points.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.connected_components.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.copy.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.cull_vertices.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.cut.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.delete_face.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.delete_vertex.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.dual.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_coordinates.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_direction.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_faces.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_length.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_midpoint.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_point.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edge_vector.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edges.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edges_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edges_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edges_on_boundaries.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edges_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edges_where.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.edges_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.euler.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_area.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_aspect_ratio.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_center.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_centroid.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_coordinates.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_corners.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_curvature.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_degree.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_flatness.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_halfedges.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_max_degree.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_min_degree.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_neighborhood.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_neighbors.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_normal.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_skewness.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_vertex_descendant.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.face_vertices.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.faces.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.faces_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.faces_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.faces_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.faces_where.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.faces_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.flip_cycles.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_data.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_json.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_lines.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_mesh.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_obj.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_off.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_pickle.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_ply.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_points.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_polygons.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_polyhedron.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_polylines.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_shape.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_stl.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.genus.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.get_any_face.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.get_any_face_vertex.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.get_any_vertex.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.get_any_vertices.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.gkey_key.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.halfedge_face.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.has_edge.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.has_face.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.has_halfedge.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.has_vertex.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.index_key.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.insert_vertex.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_connected.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_empty.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_face_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_manifold.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_orientable.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_quadmesh.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_regular.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_trimesh.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_valid.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_vertex_connected.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.join.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.key_gkey.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.key_index.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.lines.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.normal.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.number_of_edges.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.number_of_faces.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.number_of_vertices.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.smooth_area.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.smooth_centroid.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.split_edge.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.split_face.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.summary.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_data.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_json.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_lines.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_obj.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_off.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_pickle.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_ply.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_points.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_polygons.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_polylines.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_quadmesh.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_stl.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_trimesh.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.transform.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.transformed.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.unify_cycles.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.unset_edge_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.unset_face_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.update_default_face_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_area.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_centroid.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_coordinates.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_curvature.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_degree.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_faces.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_laplacian.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_max_degree.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_min_degree.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighborhood.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighbors.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertex_normal.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertices.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertices_attribute.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertices_attributes.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertices_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertices_where.doctree │ │ │ ├── compas_singular.algorithms.Skeleton.vertices_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.__init__.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.add_face.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.add_vertex.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.area.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.boundaries.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.boundary_kinks.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.bounding_box.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.bounding_box_xy.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_compas_singularity_to_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_compas_singularity_to_compas_singularity.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_boundary_kinks.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_collapsed_boundaries.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_flipped_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.centroid.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.clear.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.collapse_edge.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.compas_singular_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.compas_singular_points.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.connected_components.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.copy.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.corner_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.corner_vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.cull_vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.cut.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_mesh.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_polyline.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_polylines.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.delete_face.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.delete_vertex.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.dual.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_coordinates.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_direction.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_length.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_midpoint.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_point.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_vector.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_on_boundaries.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_where.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.euler.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_area.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_aspect_ratio.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_center.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_centroid.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_coordinates.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_corners.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_curvature.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_degree.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_flatness.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_halfedges.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_max_degree.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_min_degree.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_neighborhood.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_neighbors.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_normal.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_skewness.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertex_descendant.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_where.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.flip_cycles.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_data.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_json.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_lines.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_mesh.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_obj.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_off.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_pickle.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_ply.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_points.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polygons.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polyhedron.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polylines.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_shape.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_skeleton.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_stl.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.genus.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_face.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_face_vertex.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_vertex.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.gkey_key.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.halfedge_face.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_edge.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_face.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_halfedge.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_vertex.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.index_key.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.insert_vertex.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_connected.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_empty.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_face_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_manifold.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_orientable.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_quadmesh.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_regular.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_trimesh.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_valid.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_vertex_connected.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.join.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.key_gkey.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.key_index.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.lines.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.normal.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_edges.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces_wip.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.smooth_area.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.smooth_centroid.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.solve_triangular_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_edge.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_face.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_quads_with_poles.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.store_pole_data.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.summary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_data.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_json.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_lines.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_obj.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_off.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_pickle.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_ply.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_points.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_polygons.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_polylines.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_quadmesh.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_stl.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_trimesh.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.transform.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.transformed.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unify_cycles.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_edge_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_face_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_face_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_area.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_centroid.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_coordinates.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_curvature.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_degree.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_faces.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_laplacian.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_max_degree.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_min_degree.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighborhood.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighbors.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_normal.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_attribute.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_attributes.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_on_boundary.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_where.doctree │ │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_where_predicate.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.__init__.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.get_results.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_0.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_1.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_2.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_4.doctree │ │ │ ├── compas_singular.algorithms.TwoColourableProjection.strip_deletions_yielding_two_colourability.doctree │ │ │ ├── compas_singular.algorithms.boundary_triangulation.doctree │ │ │ ├── compas_singular.algorithms.surface_discrete_mapping.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.__init__.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.add_face.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.add_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.area.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.boundaries.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.boundary_kinks.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.bounding_box.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.bounding_box_xy.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.clear.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.coarse_edge_dense_edges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collapse_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_polyedge.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_strip.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularities.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyedge_decomposition.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyline_decomposition.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.connected_components.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.copy.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.cull_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.cut.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_face.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_face_in_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.densification.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.dual.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_coordinates.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_direction.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_length.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_midpoint.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_point.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_strip.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_vector.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_where.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.euler.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_area.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_aspect_ratio.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_center.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_coordinates.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_corners.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_curvature.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_flatness.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_halfedges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_max_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_min_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_neighbors.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_normal.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_opposite_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_skewness.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertex_descendant.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_where.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.flip_cycles.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_data.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_json.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_lines.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_obj.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_off.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_pickle.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_ply.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_points.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polygons.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polyhedron.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_quad_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_shape.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_stl.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_face_poles.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_poles.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.genus.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_face.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_face_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_polygonal_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_quad_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_strip_densities.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_strip_density.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.gkey_key.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.halfedge_face.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_face.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_halfedge.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_strip_poles.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.index_key.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.insert_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_connected.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_empty.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_face_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_face_pseudo_quad.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_manifold.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_orientable.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_pole.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_polyedge_closed.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_regular.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_strip_closed.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_trimesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_valid.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_compas_singular.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_connected.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_full_pole.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_partial_pole.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_pole.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.join.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.key_gkey.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.key_index.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.normal.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_edges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.poles.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polyedge_graph.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_mesh_density_face_target.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_polygonal_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_quad_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_func.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_target.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_func.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_target.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.smooth_area.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.smooth_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.split_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.split_face.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_edges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_graph.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_side_polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_side_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strips.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.summary.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_data.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_json.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_lines.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_obj.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_off.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_pickle.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_ply.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_points.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_polygons.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_stl.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_trimesh.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.transform.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.transformed.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unify_cycles.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_face_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_face_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_area.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_coordinates.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_curvature.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_index.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_laplacian.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_max_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_min_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighbors.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_normal.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_pole_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_where.doctree │ │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.__init__.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.add_face.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.add_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.area.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.boundaries.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.boundary_kinks.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.bounding_box.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.bounding_box_xy.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.clear.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.coarse_edge_dense_edges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collapse_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_polyedge.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_strip.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularities.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyedge_decomposition.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyline_decomposition.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.connected_components.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.copy.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.cull_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.cut.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_face.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_face_in_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.densification.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.dual.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_coordinates.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_direction.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_length.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_midpoint.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_point.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_strip.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_vector.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_where.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.euler.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_area.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_aspect_ratio.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_center.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_coordinates.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_corners.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_curvature.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_flatness.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_halfedges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_max_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_min_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_neighbors.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_normal.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_opposite_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_skewness.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertex_descendant.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_where.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.flip_cycles.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_data.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_json.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_lines.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_obj.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_off.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_pickle.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_ply.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_points.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polygons.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polyhedron.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_quad_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_shape.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_stl.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.genus.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_face.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_face_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_polygonal_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_quad_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_strip_densities.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_strip_density.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.gkey_key.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.halfedge_face.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_face.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_halfedge.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.index_key.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.insert_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_connected.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_empty.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_face_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_manifold.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_orientable.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_polyedge_closed.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_regular.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_strip_closed.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_trimesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_valid.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_compas_singular.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_connected.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.join.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.key_gkey.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.key_index.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.normal.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_edges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polyedge_graph.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_mesh_density_face_target.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_polygonal_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_quad_mesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density_func.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density_target.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density_func.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density_target.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.smooth_area.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.smooth_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.split_edge.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.split_face.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_edges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_graph.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_side_polyedges.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_side_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strips.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.summary.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_data.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_json.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_lines.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_obj.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_off.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_pickle.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_ply.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_points.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_polygons.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_polylines.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_stl.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_trimesh.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.transform.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.transformed.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unify_cycles.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_face_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_face_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_area.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_coordinates.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_curvature.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_faces.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_index.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_laplacian.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_max_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_min_degree.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighbors.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_normal.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_attribute.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_attributes.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_where.doctree │ │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.Mesh.__init__.doctree │ │ │ ├── compas_singular.datastructures.Mesh.add_face.doctree │ │ │ ├── compas_singular.datastructures.Mesh.add_vertex.doctree │ │ │ ├── compas_singular.datastructures.Mesh.area.doctree │ │ │ ├── compas_singular.datastructures.Mesh.boundaries.doctree │ │ │ ├── compas_singular.datastructures.Mesh.boundary_kinks.doctree │ │ │ ├── compas_singular.datastructures.Mesh.bounding_box.doctree │ │ │ ├── compas_singular.datastructures.Mesh.bounding_box_xy.doctree │ │ │ ├── compas_singular.datastructures.Mesh.centroid.doctree │ │ │ ├── compas_singular.datastructures.Mesh.clear.doctree │ │ │ ├── compas_singular.datastructures.Mesh.collapse_edge.doctree │ │ │ ├── compas_singular.datastructures.Mesh.connected_components.doctree │ │ │ ├── compas_singular.datastructures.Mesh.copy.doctree │ │ │ ├── compas_singular.datastructures.Mesh.cull_vertices.doctree │ │ │ ├── compas_singular.datastructures.Mesh.cut.doctree │ │ │ ├── compas_singular.datastructures.Mesh.delete_face.doctree │ │ │ ├── compas_singular.datastructures.Mesh.delete_vertex.doctree │ │ │ ├── compas_singular.datastructures.Mesh.doctree │ │ │ ├── compas_singular.datastructures.Mesh.dual.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_coordinates.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_direction.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_faces.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_length.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_midpoint.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_point.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edge_vector.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edges.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edges_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edges_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edges_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edges_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edges_where.doctree │ │ │ ├── compas_singular.datastructures.Mesh.edges_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.Mesh.euler.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_adjacency.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_area.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_aspect_ratio.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_center.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_centroid.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_coordinates.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_corners.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_curvature.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_degree.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_flatness.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_halfedges.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_max_degree.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_min_degree.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_neighbors.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_normal.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_skewness.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_vertex_descendant.doctree │ │ │ ├── compas_singular.datastructures.Mesh.face_vertices.doctree │ │ │ ├── compas_singular.datastructures.Mesh.faces.doctree │ │ │ ├── compas_singular.datastructures.Mesh.faces_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.faces_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.faces_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.Mesh.faces_where.doctree │ │ │ ├── compas_singular.datastructures.Mesh.faces_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.Mesh.flip_cycles.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_data.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_json.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_lines.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_obj.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_off.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_pickle.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_ply.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_points.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_polygons.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_polyhedron.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_polylines.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_shape.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_stl.doctree │ │ │ ├── compas_singular.datastructures.Mesh.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.Mesh.genus.doctree │ │ │ ├── compas_singular.datastructures.Mesh.get_any_face.doctree │ │ │ ├── compas_singular.datastructures.Mesh.get_any_face_vertex.doctree │ │ │ ├── compas_singular.datastructures.Mesh.get_any_vertex.doctree │ │ │ ├── compas_singular.datastructures.Mesh.get_any_vertices.doctree │ │ │ ├── compas_singular.datastructures.Mesh.gkey_key.doctree │ │ │ ├── compas_singular.datastructures.Mesh.halfedge_face.doctree │ │ │ ├── compas_singular.datastructures.Mesh.has_edge.doctree │ │ │ ├── compas_singular.datastructures.Mesh.has_face.doctree │ │ │ ├── compas_singular.datastructures.Mesh.has_halfedge.doctree │ │ │ ├── compas_singular.datastructures.Mesh.has_vertex.doctree │ │ │ ├── compas_singular.datastructures.Mesh.index_key.doctree │ │ │ ├── compas_singular.datastructures.Mesh.insert_vertex.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_connected.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_empty.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_face_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_manifold.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_orientable.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_regular.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_trimesh.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_valid.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_vertex_connected.doctree │ │ │ ├── compas_singular.datastructures.Mesh.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.Mesh.join.doctree │ │ │ ├── compas_singular.datastructures.Mesh.key_gkey.doctree │ │ │ ├── compas_singular.datastructures.Mesh.key_index.doctree │ │ │ ├── compas_singular.datastructures.Mesh.normal.doctree │ │ │ ├── compas_singular.datastructures.Mesh.number_of_edges.doctree │ │ │ ├── compas_singular.datastructures.Mesh.number_of_faces.doctree │ │ │ ├── compas_singular.datastructures.Mesh.number_of_vertices.doctree │ │ │ ├── compas_singular.datastructures.Mesh.smooth_area.doctree │ │ │ ├── compas_singular.datastructures.Mesh.smooth_centroid.doctree │ │ │ ├── compas_singular.datastructures.Mesh.split_edge.doctree │ │ │ ├── compas_singular.datastructures.Mesh.split_face.doctree │ │ │ ├── compas_singular.datastructures.Mesh.summary.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_data.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_json.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_lines.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_obj.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_off.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_pickle.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_ply.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_points.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_polygons.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_polylines.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_stl.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_trimesh.doctree │ │ │ ├── compas_singular.datastructures.Mesh.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.Mesh.transform.doctree │ │ │ ├── compas_singular.datastructures.Mesh.transformed.doctree │ │ │ ├── compas_singular.datastructures.Mesh.unify_cycles.doctree │ │ │ ├── compas_singular.datastructures.Mesh.unset_edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.unset_face_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.update_default_face_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_area.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_centroid.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_coordinates.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_curvature.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_degree.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_faces.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_laplacian.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_max_degree.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_min_degree.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_neighbors.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertex_normal.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertices.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertices_attribute.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertices_attributes.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertices_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertices_where.doctree │ │ │ ├── compas_singular.datastructures.Mesh.vertices_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.Network.__init__.doctree │ │ │ ├── compas_singular.datastructures.Network.add_edge.doctree │ │ │ ├── compas_singular.datastructures.Network.add_node.doctree │ │ │ ├── compas_singular.datastructures.Network.clear.doctree │ │ │ ├── compas_singular.datastructures.Network.connected_edges.doctree │ │ │ ├── compas_singular.datastructures.Network.copy.doctree │ │ │ ├── compas_singular.datastructures.Network.degree.doctree │ │ │ ├── compas_singular.datastructures.Network.degree_in.doctree │ │ │ ├── compas_singular.datastructures.Network.degree_out.doctree │ │ │ ├── compas_singular.datastructures.Network.delete_edge.doctree │ │ │ ├── compas_singular.datastructures.Network.delete_node.doctree │ │ │ ├── compas_singular.datastructures.Network.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_coordinates.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_direction.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_length.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_midpoint.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_point.doctree │ │ │ ├── compas_singular.datastructures.Network.edge_vector.doctree │ │ │ ├── compas_singular.datastructures.Network.edges.doctree │ │ │ ├── compas_singular.datastructures.Network.edges_attribute.doctree │ │ │ ├── compas_singular.datastructures.Network.edges_attributes.doctree │ │ │ ├── compas_singular.datastructures.Network.edges_where.doctree │ │ │ ├── compas_singular.datastructures.Network.edges_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.Network.from_data.doctree │ │ │ ├── compas_singular.datastructures.Network.from_edges.doctree │ │ │ ├── compas_singular.datastructures.Network.from_json.doctree │ │ │ ├── compas_singular.datastructures.Network.from_lines.doctree │ │ │ ├── compas_singular.datastructures.Network.from_networkx.doctree │ │ │ ├── compas_singular.datastructures.Network.from_nodes_and_edges.doctree │ │ │ ├── compas_singular.datastructures.Network.from_obj.doctree │ │ │ ├── compas_singular.datastructures.Network.get_any_edge.doctree │ │ │ ├── compas_singular.datastructures.Network.get_any_edges.doctree │ │ │ ├── compas_singular.datastructures.Network.get_any_node.doctree │ │ │ ├── compas_singular.datastructures.Network.get_any_nodes.doctree │ │ │ ├── compas_singular.datastructures.Network.gkey_key.doctree │ │ │ ├── compas_singular.datastructures.Network.has_edge.doctree │ │ │ ├── compas_singular.datastructures.Network.has_node.doctree │ │ │ ├── compas_singular.datastructures.Network.index_key.doctree │ │ │ ├── compas_singular.datastructures.Network.index_uv.doctree │ │ │ ├── compas_singular.datastructures.Network.is_leaf.doctree │ │ │ ├── compas_singular.datastructures.Network.is_node_connected.doctree │ │ │ ├── compas_singular.datastructures.Network.key_gkey.doctree │ │ │ ├── compas_singular.datastructures.Network.key_index.doctree │ │ │ ├── compas_singular.datastructures.Network.leaves.doctree │ │ │ ├── compas_singular.datastructures.Network.neighborhood.doctree │ │ │ ├── compas_singular.datastructures.Network.neighbors.doctree │ │ │ ├── compas_singular.datastructures.Network.neighbors_in.doctree │ │ │ ├── compas_singular.datastructures.Network.neighbors_out.doctree │ │ │ ├── compas_singular.datastructures.Network.node_attribute.doctree │ │ │ ├── compas_singular.datastructures.Network.node_attributes.doctree │ │ │ ├── compas_singular.datastructures.Network.node_coordinates.doctree │ │ │ ├── compas_singular.datastructures.Network.node_laplacian.doctree │ │ │ ├── compas_singular.datastructures.Network.node_neighborhood_centroid.doctree │ │ │ ├── compas_singular.datastructures.Network.nodes.doctree │ │ │ ├── compas_singular.datastructures.Network.nodes_attribute.doctree │ │ │ ├── compas_singular.datastructures.Network.nodes_attributes.doctree │ │ │ ├── compas_singular.datastructures.Network.nodes_where.doctree │ │ │ ├── compas_singular.datastructures.Network.nodes_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.Network.number_of_edges.doctree │ │ │ ├── compas_singular.datastructures.Network.number_of_nodes.doctree │ │ │ ├── compas_singular.datastructures.Network.split_edge.doctree │ │ │ ├── compas_singular.datastructures.Network.summary.doctree │ │ │ ├── compas_singular.datastructures.Network.to_data.doctree │ │ │ ├── compas_singular.datastructures.Network.to_json.doctree │ │ │ ├── compas_singular.datastructures.Network.to_lines.doctree │ │ │ ├── compas_singular.datastructures.Network.to_networkx.doctree │ │ │ ├── compas_singular.datastructures.Network.to_nodes_and_edges.doctree │ │ │ ├── compas_singular.datastructures.Network.to_obj.doctree │ │ │ ├── compas_singular.datastructures.Network.to_points.doctree │ │ │ ├── compas_singular.datastructures.Network.unset_edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.Network.unset_node_attribute.doctree │ │ │ ├── compas_singular.datastructures.Network.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.Network.update_default_node_attributes.doctree │ │ │ ├── compas_singular.datastructures.Network.uv_index.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.__init__.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.add_face.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.add_vertex.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.area.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.boundaries.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.boundary_kinks.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.bounding_box.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.bounding_box_xy.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.centroid.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.clear.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collapse_edge.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_polyedge.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_polyedges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_strip.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_strips.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularities.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyedge_decomposition.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyedges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyline_decomposition.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polylines.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.connected_components.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.copy.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.cull_vertices.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.cut.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_face.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_face_in_strips.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_vertex.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.dual.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_coordinates.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_direction.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_length.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_midpoint.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_point.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_strip.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_vector.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_where.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.euler.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_area.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_aspect_ratio.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_center.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_centroid.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_coordinates.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_corners.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_curvature.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_degree.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_flatness.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_halfedges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_max_degree.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_min_degree.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_neighbors.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_normal.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_opposite_edge.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_skewness.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_strips.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertex_descendant.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertices.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_where.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.flip_cycles.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_data.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_json.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_lines.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_obj.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_off.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_pickle.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_ply.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_points.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polygons.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polyhedron.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polylines.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_shape.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_stl.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_face_poles.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_poles.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.genus.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_face.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_face_vertex.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_vertex.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_vertices.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.gkey_key.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.halfedge_face.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_edge.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_face.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_halfedge.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_strip_poles.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_vertex.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.index_key.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.insert_vertex.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_connected.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_empty.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_face_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_face_pseudo_quad.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_manifold.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_orientable.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_pole.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_polyedge_closed.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_regular.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_strip_closed.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_trimesh.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_valid.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_compas_singular.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_connected.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_full_pole.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_partial_pole.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_pole.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.join.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.key_gkey.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.key_index.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.normal.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_edges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_strips.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_vertices.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.poles.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polyedge_graph.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polyedges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polylines.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.smooth_area.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.smooth_centroid.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.split_edge.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.split_face.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_edges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_graph.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_side_polyedges.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_side_polylines.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strips.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.summary.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_data.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_json.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_lines.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_obj.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_off.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_pickle.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_ply.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_points.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_polygons.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_polylines.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_stl.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_trimesh.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.transform.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.transformed.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unify_cycles.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_face_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_face_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_area.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_centroid.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_coordinates.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_curvature.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_degree.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_index.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_laplacian.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_max_degree.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_min_degree.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighbors.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_normal.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_pole_faces.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_attribute.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_attributes.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_where.doctree │ │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.__init__.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.add_face.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.add_vertex.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.area.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.boundaries.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.boundary_kinks.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.bounding_box.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.bounding_box_xy.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.centroid.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.clear.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.collapse_edge.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.collect_polyedge.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.collect_polyedges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.collect_strip.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.collect_strips.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularities.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyedge_decomposition.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyedges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyline_decomposition.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polylines.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.connected_components.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.copy.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.cull_vertices.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.cut.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.delete_face.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.delete_face_in_strips.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.delete_vertex.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.dual.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_coordinates.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_direction.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_faces.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_length.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_midpoint.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_point.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_strip.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edge_vector.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edges_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edges_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edges_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edges_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edges_where.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.edges_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.euler.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency_vertices.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_area.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_aspect_ratio.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_center.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_centroid.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_coordinates.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_corners.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_curvature.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_degree.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_flatness.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_halfedges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_max_degree.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_min_degree.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_neighbors.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_normal.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_opposite_edge.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_skewness.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_strips.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_vertex_ancestor.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_vertex_descendant.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.face_vertices.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.faces.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.faces_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.faces_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.faces_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.faces_where.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.faces_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.flip_cycles.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_data.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_json.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_lines.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_obj.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_off.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_pickle.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_ply.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_points.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_polygons.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_polyhedron.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_polylines.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_shape.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_stl.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.from_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.genus.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.get_any_face.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.get_any_face_vertex.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.get_any_vertex.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.get_any_vertices.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.gkey_key.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.halfedge_face.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.has_edge.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.has_face.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.has_halfedge.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.has_vertex.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.index_key.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.insert_vertex.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_connected.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_edge_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_empty.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_face_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_manifold.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_orientable.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_polyedge_closed.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_regular.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_strip_closed.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_trimesh.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_valid.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_compas_singular.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_connected.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.join.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.key_gkey.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.key_index.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.normal.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.number_of_edges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.number_of_faces.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.number_of_strips.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.number_of_vertices.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.polyedge_graph.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.polyedges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.polylines.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.smooth_area.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.smooth_centroid.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.split_edge.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.split_face.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strip_edges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strip_faces.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strip_graph.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strip_side_polyedges.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strip_side_polylines.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.strips.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.summary.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_data.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_json.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_lines.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_obj.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_off.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_pickle.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_ply.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_points.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_polygons.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_polylines.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_quadmesh.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_stl.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_trimesh.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.to_vertices_and_faces.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.transform.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.transformed.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.unify_cycles.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.unset_edge_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.unset_face_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.unset_vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.update_default_edge_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.update_default_face_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_area.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_centroid.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_coordinates.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_curvature.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_degree.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_faces.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_index.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_laplacian.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_max_degree.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_min_degree.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighborhood.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighbors.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_normal.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertices.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertices_attribute.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertices_attributes.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertices_on_boundaries.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertices_on_boundary.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertices_where.doctree │ │ │ ├── compas_singular.datastructures.QuadMesh.vertices_where_predicate.doctree │ │ │ ├── compas_singular.datastructures.add_and_delete_strips.doctree │ │ │ ├── compas_singular.datastructures.add_handle.doctree │ │ │ ├── compas_singular.datastructures.add_opening.doctree │ │ │ ├── compas_singular.datastructures.add_strip.doctree │ │ │ ├── compas_singular.datastructures.add_strips.doctree │ │ │ ├── compas_singular.datastructures.automated_smoothing_constraints.doctree │ │ │ ├── compas_singular.datastructures.automated_smoothing_surface_constraints.doctree │ │ │ ├── compas_singular.datastructures.collateral_strip_deletions.doctree │ │ │ ├── compas_singular.datastructures.constrained_smoothing.doctree │ │ │ ├── compas_singular.datastructures.customized_smoothing_constraints.doctree │ │ │ ├── compas_singular.datastructures.delete_strip.doctree │ │ │ ├── compas_singular.datastructures.delete_strips.doctree │ │ │ ├── compas_singular.datastructures.dense_quad_mesh_polyedge_2_coloring.doctree │ │ │ ├── compas_singular.datastructures.display_smoothing_constraints.doctree │ │ │ ├── compas_singular.datastructures.fold.doctree │ │ │ ├── compas_singular.datastructures.fold_vertex_group.doctree │ │ │ ├── compas_singular.datastructures.merge_pseudo_quads_in_quad.doctree │ │ │ ├── compas_singular.datastructures.mesh_face_2_coloring.doctree │ │ │ ├── compas_singular.datastructures.mesh_face_n_coloring.doctree │ │ │ ├── compas_singular.datastructures.mesh_move_by.doctree │ │ │ ├── compas_singular.datastructures.mesh_move_vertex_by.doctree │ │ │ ├── compas_singular.datastructures.mesh_move_vertex_to.doctree │ │ │ ├── compas_singular.datastructures.mesh_move_vertices_by.doctree │ │ │ ├── compas_singular.datastructures.mesh_move_vertices_to.doctree │ │ │ ├── compas_singular.datastructures.mesh_vertex_2_coloring.doctree │ │ │ ├── compas_singular.datastructures.mesh_vertex_n_coloring.doctree │ │ │ ├── compas_singular.datastructures.quad_mesh_polyedge_2_coloring.doctree │ │ │ ├── compas_singular.datastructures.quad_mesh_polyedge_n_coloring.doctree │ │ │ ├── compas_singular.datastructures.quad_mesh_strip_2_coloring.doctree │ │ │ ├── compas_singular.datastructures.quad_mesh_strip_n_coloring.doctree │ │ │ ├── compas_singular.datastructures.split_quad_in_pseudo_quads.doctree │ │ │ ├── compas_singular.datastructures.split_strip.doctree │ │ │ ├── compas_singular.datastructures.split_strips.doctree │ │ │ ├── compas_singular.datastructures.strip_polyedge_update.doctree │ │ │ ├── compas_singular.datastructures.strips_to_split_to_prevent_boundary_collapse.doctree │ │ │ ├── compas_singular.datastructures.surface_constrained_smoothing.doctree │ │ │ ├── compas_singular.datastructures.total_boundary_deletions.doctree │ │ │ ├── compas_singular.geometry.Polyline.__init__.doctree │ │ │ ├── compas_singular.geometry.Polyline.copy.doctree │ │ │ ├── compas_singular.geometry.Polyline.doctree │ │ │ ├── compas_singular.geometry.Polyline.from_data.doctree │ │ │ ├── compas_singular.geometry.Polyline.is_closed.doctree │ │ │ ├── compas_singular.geometry.Polyline.is_selfintersecting.doctree │ │ │ ├── compas_singular.geometry.Polyline.point.doctree │ │ │ ├── compas_singular.geometry.Polyline.to_data.doctree │ │ │ ├── compas_singular.geometry.Polyline.transform.doctree │ │ │ ├── compas_singular.geometry.Polyline.transformed.doctree │ │ │ ├── compas_singular.geometry.Polyline.vertex_curvature.doctree │ │ │ ├── compas_singular.geometry.circular_array.doctree │ │ │ ├── compas_singular.geometry.closest_point_on_circle.doctree │ │ │ ├── compas_singular.geometry.closest_point_on_line.doctree │ │ │ ├── compas_singular.geometry.closest_point_on_polyline.doctree │ │ │ ├── compas_singular.geometry.closest_point_on_polylines.doctree │ │ │ ├── compas_singular.geometry.closest_point_on_segment.doctree │ │ │ ├── compas_singular.geometry.line_array.doctree │ │ │ ├── compas_singular.geometry.rectangular_array.doctree │ │ │ ├── compas_singular.geometry.spiral_array.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.__init__.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.closest_point.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.closest_points.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.divide.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.divide_length.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.from_geometry.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.from_guid.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.from_object.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.from_selection.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.is_circle.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.is_closed.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.is_line.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.is_nurbs.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.is_polygon.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.is_polyline.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.length.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.space.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.tangents.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.to_compas.doctree │ │ │ ├── compas_singular.rhino.RhinoCurve.transform.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.__init__.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.borders.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.brep_to_compas.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.closest_point.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.closest_point_on_boundaries.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.closest_points.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.closest_points_on_boundaries.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.from_geometry.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.from_guid.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.from_object.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.from_selection.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.heightfield.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.heightfield_to_compas.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.kinks.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.line_uv_to_xyz.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.mesh_uv_to_xyz.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.point_uv_to_xyz.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.point_xyz_to_uv.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.polyline_uv_to_xyz.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.space.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.to_compas.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.transform.doctree │ │ │ ├── compas_singular.rhino.RhinoSurface.uv_to_compas.doctree │ │ │ ├── compas_singular.rhino.draw_graph.doctree │ │ │ ├── compas_singular.rhino.select_mesh_polyedge.doctree │ │ │ ├── compas_singular.rhino.select_quad_mesh_polyedge.doctree │ │ │ ├── compas_singular.rhino.select_quad_mesh_strip.doctree │ │ │ ├── compas_singular.topology.is_adjacency_two_colorable.doctree │ │ │ ├── compas_singular.utilities.are_items_in_list.doctree │ │ │ ├── compas_singular.utilities.common_items.doctree │ │ │ ├── compas_singular.utilities.extract_pareto_indices.doctree │ │ │ ├── compas_singular.utilities.is_dominating.doctree │ │ │ ├── compas_singular.utilities.list_split.doctree │ │ │ ├── compas_singular.utilities.remove_isomorphism_in_integer_list.doctree │ │ │ ├── compas_singular.utilities.sublist_from_to_items_in_closed_list.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.__init__.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.add_face.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.add_vertex.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.area.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.boundaries.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.boundary_kinks.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.bounding_box.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.bounding_box_xy.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.branches.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.branches_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.branches_singularity_to_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.branches_singularity_to_singularity.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.branches_splitting_boundary_kinks.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.branches_splitting_collapsed_boundaries.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.branches_splitting_flipped_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.centroid.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.clear.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.collapse_edge.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.connected_components.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.copy.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.corner_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.corner_vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.cull_vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.decomposition_curves.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.decomposition_delaunay.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.decomposition_mesh.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.decomposition_polyline.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.decomposition_polylines.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.decomposition_polysurface.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.decomposition_skeleton.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.delete_face.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.delete_vertex.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.dual.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_coordinates.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_direction.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_length.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_midpoint.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_point.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edge_vector.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edges.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edges_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edges_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edges_on_boundaries.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edges_on_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edges_where.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.edges_where_predicate.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.euler.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_adjacency.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_adjacency_halfedge.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_adjacency_vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_area.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_aspect_ratio.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_center.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_centroid.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_coordinates.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_corners.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_curvature.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_degree.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_flatness.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_halfedges.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_max_degree.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_min_degree.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_neighborhood.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_neighbors.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_normal.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_skewness.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_vertex_ancestor.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_vertex_descendant.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.face_vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.faces_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.faces_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.faces_on_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.faces_where.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.faces_where_predicate.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.flip_cycles.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_data.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_json.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_lines.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_mesh.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_obj.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_off.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_pickle.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_ply.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_points.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_polygons.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_polyhedron.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_polylines.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_shape.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_skeleton.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_stl.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.from_vertices_and_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.genus.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.get_any_face.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.get_any_face_vertex.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.get_any_vertex.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.get_any_vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.gkey_key.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.halfedge_face.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.has_edge.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.has_face.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.has_halfedge.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.has_vertex.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.index_key.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.insert_vertex.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_boundary_vertex_kink.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_connected.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_edge_on_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_empty.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_face_on_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_manifold.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_orientable.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_quadmesh.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_regular.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_trimesh.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_valid.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_vertex_connected.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.is_vertex_on_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.key_gkey.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.key_index.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.lines.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.normal.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.number_of_edges.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.number_of_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.number_of_vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces_wip.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.singular_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.singular_points.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.smooth_area.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.smooth_centroid.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.solve_triangular_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.split_edge.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.split_face.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.split_quads_with_poles.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.split_vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.store_pole_data.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.summary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_data.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_json.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_lines.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_obj.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_off.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_pickle.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_ply.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_points.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_polygons.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_polylines.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_quadmesh.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_stl.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_trimesh.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.to_vertices_and_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.transform.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.transformed.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.unify_cycles.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.unset_edge_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.unset_face_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.unset_vertex_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.update_default_edge_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.update_default_face_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.update_default_vertex_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_area.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_centroid.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_coordinates.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_curvature.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_degree.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_faces.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_laplacian.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_max_degree.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_min_degree.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_neighborhood.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_neighbors.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertex_normal.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertices.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertices_attribute.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertices_attributes.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertices_on_boundaries.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertices_on_boundary.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertices_where.doctree │ │ │ ├── singular.algorithms.DecompositionRemap.vertices_where_predicate.doctree │ │ │ ├── singular.algorithms.Skeleton.__init__.doctree │ │ │ ├── singular.algorithms.Skeleton.add_face.doctree │ │ │ ├── singular.algorithms.Skeleton.add_vertex.doctree │ │ │ ├── singular.algorithms.Skeleton.area.doctree │ │ │ ├── singular.algorithms.Skeleton.boundaries.doctree │ │ │ ├── singular.algorithms.Skeleton.boundary_kinks.doctree │ │ │ ├── singular.algorithms.Skeleton.bounding_box.doctree │ │ │ ├── singular.algorithms.Skeleton.bounding_box_xy.doctree │ │ │ ├── singular.algorithms.Skeleton.branches.doctree │ │ │ ├── singular.algorithms.Skeleton.centroid.doctree │ │ │ ├── singular.algorithms.Skeleton.clear.doctree │ │ │ ├── singular.algorithms.Skeleton.collapse_edge.doctree │ │ │ ├── singular.algorithms.Skeleton.connected_components.doctree │ │ │ ├── singular.algorithms.Skeleton.copy.doctree │ │ │ ├── singular.algorithms.Skeleton.cull_vertices.doctree │ │ │ ├── singular.algorithms.Skeleton.delete_face.doctree │ │ │ ├── singular.algorithms.Skeleton.delete_vertex.doctree │ │ │ ├── singular.algorithms.Skeleton.doctree │ │ │ ├── singular.algorithms.Skeleton.dual.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_coordinates.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_direction.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_faces.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_length.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_midpoint.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_point.doctree │ │ │ ├── singular.algorithms.Skeleton.edge_vector.doctree │ │ │ ├── singular.algorithms.Skeleton.edges.doctree │ │ │ ├── singular.algorithms.Skeleton.edges_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.edges_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.edges_on_boundaries.doctree │ │ │ ├── singular.algorithms.Skeleton.edges_on_boundary.doctree │ │ │ ├── singular.algorithms.Skeleton.edges_where.doctree │ │ │ ├── singular.algorithms.Skeleton.edges_where_predicate.doctree │ │ │ ├── singular.algorithms.Skeleton.euler.doctree │ │ │ ├── singular.algorithms.Skeleton.face_adjacency.doctree │ │ │ ├── singular.algorithms.Skeleton.face_adjacency_halfedge.doctree │ │ │ ├── singular.algorithms.Skeleton.face_adjacency_vertices.doctree │ │ │ ├── singular.algorithms.Skeleton.face_area.doctree │ │ │ ├── singular.algorithms.Skeleton.face_aspect_ratio.doctree │ │ │ ├── singular.algorithms.Skeleton.face_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.face_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.face_center.doctree │ │ │ ├── singular.algorithms.Skeleton.face_centroid.doctree │ │ │ ├── singular.algorithms.Skeleton.face_coordinates.doctree │ │ │ ├── singular.algorithms.Skeleton.face_corners.doctree │ │ │ ├── singular.algorithms.Skeleton.face_curvature.doctree │ │ │ ├── singular.algorithms.Skeleton.face_degree.doctree │ │ │ ├── singular.algorithms.Skeleton.face_flatness.doctree │ │ │ ├── singular.algorithms.Skeleton.face_halfedges.doctree │ │ │ ├── singular.algorithms.Skeleton.face_max_degree.doctree │ │ │ ├── singular.algorithms.Skeleton.face_min_degree.doctree │ │ │ ├── singular.algorithms.Skeleton.face_neighborhood.doctree │ │ │ ├── singular.algorithms.Skeleton.face_neighbors.doctree │ │ │ ├── singular.algorithms.Skeleton.face_normal.doctree │ │ │ ├── singular.algorithms.Skeleton.face_skewness.doctree │ │ │ ├── singular.algorithms.Skeleton.face_vertex_ancestor.doctree │ │ │ ├── singular.algorithms.Skeleton.face_vertex_descendant.doctree │ │ │ ├── singular.algorithms.Skeleton.face_vertices.doctree │ │ │ ├── singular.algorithms.Skeleton.faces.doctree │ │ │ ├── singular.algorithms.Skeleton.faces_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.faces_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.faces_on_boundary.doctree │ │ │ ├── singular.algorithms.Skeleton.faces_where.doctree │ │ │ ├── singular.algorithms.Skeleton.faces_where_predicate.doctree │ │ │ ├── singular.algorithms.Skeleton.flip_cycles.doctree │ │ │ ├── singular.algorithms.Skeleton.from_data.doctree │ │ │ ├── singular.algorithms.Skeleton.from_json.doctree │ │ │ ├── singular.algorithms.Skeleton.from_lines.doctree │ │ │ ├── singular.algorithms.Skeleton.from_mesh.doctree │ │ │ ├── singular.algorithms.Skeleton.from_obj.doctree │ │ │ ├── singular.algorithms.Skeleton.from_off.doctree │ │ │ ├── singular.algorithms.Skeleton.from_pickle.doctree │ │ │ ├── singular.algorithms.Skeleton.from_ply.doctree │ │ │ ├── singular.algorithms.Skeleton.from_points.doctree │ │ │ ├── singular.algorithms.Skeleton.from_polygons.doctree │ │ │ ├── singular.algorithms.Skeleton.from_polyhedron.doctree │ │ │ ├── singular.algorithms.Skeleton.from_polylines.doctree │ │ │ ├── singular.algorithms.Skeleton.from_shape.doctree │ │ │ ├── singular.algorithms.Skeleton.from_stl.doctree │ │ │ ├── singular.algorithms.Skeleton.from_vertices_and_faces.doctree │ │ │ ├── singular.algorithms.Skeleton.genus.doctree │ │ │ ├── singular.algorithms.Skeleton.get_any_face.doctree │ │ │ ├── singular.algorithms.Skeleton.get_any_face_vertex.doctree │ │ │ ├── singular.algorithms.Skeleton.get_any_vertex.doctree │ │ │ ├── singular.algorithms.Skeleton.get_any_vertices.doctree │ │ │ ├── singular.algorithms.Skeleton.gkey_key.doctree │ │ │ ├── singular.algorithms.Skeleton.halfedge_face.doctree │ │ │ ├── singular.algorithms.Skeleton.has_edge.doctree │ │ │ ├── singular.algorithms.Skeleton.has_face.doctree │ │ │ ├── singular.algorithms.Skeleton.has_halfedge.doctree │ │ │ ├── singular.algorithms.Skeleton.has_vertex.doctree │ │ │ ├── singular.algorithms.Skeleton.index_key.doctree │ │ │ ├── singular.algorithms.Skeleton.insert_vertex.doctree │ │ │ ├── singular.algorithms.Skeleton.is_boundary_vertex_kink.doctree │ │ │ ├── singular.algorithms.Skeleton.is_connected.doctree │ │ │ ├── singular.algorithms.Skeleton.is_edge_on_boundary.doctree │ │ │ ├── singular.algorithms.Skeleton.is_empty.doctree │ │ │ ├── singular.algorithms.Skeleton.is_face_on_boundary.doctree │ │ │ ├── singular.algorithms.Skeleton.is_manifold.doctree │ │ │ ├── singular.algorithms.Skeleton.is_orientable.doctree │ │ │ ├── singular.algorithms.Skeleton.is_quadmesh.doctree │ │ │ ├── singular.algorithms.Skeleton.is_regular.doctree │ │ │ ├── singular.algorithms.Skeleton.is_trimesh.doctree │ │ │ ├── singular.algorithms.Skeleton.is_valid.doctree │ │ │ ├── singular.algorithms.Skeleton.is_vertex_connected.doctree │ │ │ ├── singular.algorithms.Skeleton.is_vertex_on_boundary.doctree │ │ │ ├── singular.algorithms.Skeleton.key_gkey.doctree │ │ │ ├── singular.algorithms.Skeleton.key_index.doctree │ │ │ ├── singular.algorithms.Skeleton.lines.doctree │ │ │ ├── singular.algorithms.Skeleton.normal.doctree │ │ │ ├── singular.algorithms.Skeleton.number_of_edges.doctree │ │ │ ├── singular.algorithms.Skeleton.number_of_faces.doctree │ │ │ ├── singular.algorithms.Skeleton.number_of_vertices.doctree │ │ │ ├── singular.algorithms.Skeleton.singular_faces.doctree │ │ │ ├── singular.algorithms.Skeleton.singular_points.doctree │ │ │ ├── singular.algorithms.Skeleton.smooth_area.doctree │ │ │ ├── singular.algorithms.Skeleton.smooth_centroid.doctree │ │ │ ├── singular.algorithms.Skeleton.split_edge.doctree │ │ │ ├── singular.algorithms.Skeleton.split_face.doctree │ │ │ ├── singular.algorithms.Skeleton.summary.doctree │ │ │ ├── singular.algorithms.Skeleton.to_data.doctree │ │ │ ├── singular.algorithms.Skeleton.to_json.doctree │ │ │ ├── singular.algorithms.Skeleton.to_lines.doctree │ │ │ ├── singular.algorithms.Skeleton.to_obj.doctree │ │ │ ├── singular.algorithms.Skeleton.to_off.doctree │ │ │ ├── singular.algorithms.Skeleton.to_pickle.doctree │ │ │ ├── singular.algorithms.Skeleton.to_ply.doctree │ │ │ ├── singular.algorithms.Skeleton.to_points.doctree │ │ │ ├── singular.algorithms.Skeleton.to_polygons.doctree │ │ │ ├── singular.algorithms.Skeleton.to_polylines.doctree │ │ │ ├── singular.algorithms.Skeleton.to_quadmesh.doctree │ │ │ ├── singular.algorithms.Skeleton.to_stl.doctree │ │ │ ├── singular.algorithms.Skeleton.to_trimesh.doctree │ │ │ ├── singular.algorithms.Skeleton.to_vertices_and_faces.doctree │ │ │ ├── singular.algorithms.Skeleton.transform.doctree │ │ │ ├── singular.algorithms.Skeleton.transformed.doctree │ │ │ ├── singular.algorithms.Skeleton.unify_cycles.doctree │ │ │ ├── singular.algorithms.Skeleton.unset_edge_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.unset_face_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.unset_vertex_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.update_default_edge_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.update_default_face_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.update_default_vertex_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_area.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_centroid.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_coordinates.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_curvature.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_degree.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_faces.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_laplacian.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_max_degree.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_min_degree.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_neighborhood.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_neighbors.doctree │ │ │ ├── singular.algorithms.Skeleton.vertex_normal.doctree │ │ │ ├── singular.algorithms.Skeleton.vertices.doctree │ │ │ ├── singular.algorithms.Skeleton.vertices_attribute.doctree │ │ │ ├── singular.algorithms.Skeleton.vertices_attributes.doctree │ │ │ ├── singular.algorithms.Skeleton.vertices_on_boundaries.doctree │ │ │ ├── singular.algorithms.Skeleton.vertices_on_boundary.doctree │ │ │ ├── singular.algorithms.Skeleton.vertices_where.doctree │ │ │ ├── singular.algorithms.Skeleton.vertices_where_predicate.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.__init__.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.add_face.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.add_vertex.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.area.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.boundaries.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.boundary_kinks.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.bounding_box.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.bounding_box_xy.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.branches.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.branches_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.branches_singularity_to_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.branches_singularity_to_singularity.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.branches_splitting_boundary_kinks.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.branches_splitting_collapsed_boundaries.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.branches_splitting_flipped_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.centroid.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.clear.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.collapse_edge.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.connected_components.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.copy.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.corner_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.corner_vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.cull_vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.decomposition_mesh.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.decomposition_polyline.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.decomposition_polylines.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.delete_face.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.delete_vertex.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.dual.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_coordinates.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_direction.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_length.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_midpoint.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_point.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edge_vector.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edges.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edges_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edges_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edges_on_boundaries.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edges_on_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edges_where.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.edges_where_predicate.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.euler.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_adjacency.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_adjacency_halfedge.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_adjacency_vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_area.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_aspect_ratio.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_center.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_centroid.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_coordinates.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_corners.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_curvature.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_degree.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_flatness.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_halfedges.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_max_degree.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_min_degree.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_neighborhood.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_neighbors.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_normal.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_skewness.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_vertex_ancestor.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_vertex_descendant.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.face_vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.faces_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.faces_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.faces_on_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.faces_where.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.faces_where_predicate.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.flip_cycles.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_data.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_json.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_lines.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_mesh.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_obj.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_off.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_pickle.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_ply.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_points.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_polygons.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_polyhedron.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_polylines.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_shape.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_skeleton.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_stl.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.from_vertices_and_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.genus.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.get_any_face.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.get_any_face_vertex.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.get_any_vertex.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.get_any_vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.gkey_key.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.halfedge_face.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.has_edge.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.has_face.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.has_halfedge.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.has_vertex.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.index_key.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.insert_vertex.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_boundary_vertex_kink.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_connected.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_edge_on_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_empty.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_face_on_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_manifold.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_orientable.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_quadmesh.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_regular.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_trimesh.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_valid.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_vertex_connected.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.is_vertex_on_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.key_gkey.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.key_index.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.lines.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.normal.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.number_of_edges.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.number_of_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.number_of_vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces_wip.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.singular_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.singular_points.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.smooth_area.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.smooth_centroid.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.solve_triangular_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.split_edge.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.split_face.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.split_quads_with_poles.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.split_vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.store_pole_data.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.summary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_data.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_json.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_lines.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_obj.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_off.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_pickle.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_ply.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_points.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_polygons.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_polylines.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_quadmesh.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_stl.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_trimesh.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.to_vertices_and_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.transform.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.transformed.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.unify_cycles.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.unset_edge_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.unset_face_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.unset_vertex_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.update_default_edge_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.update_default_face_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.update_default_vertex_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_area.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_centroid.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_coordinates.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_curvature.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_degree.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_faces.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_laplacian.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_max_degree.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_min_degree.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_neighborhood.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_neighbors.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertex_normal.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertices.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertices_attribute.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertices_attributes.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertices_on_boundaries.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertices_on_boundary.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertices_where.doctree │ │ │ ├── singular.algorithms.SkeletonDecomposition.vertices_where_predicate.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.__init__.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.get_results.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.projection.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.projection_0.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.projection_1.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.projection_2.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.projection_4.doctree │ │ │ ├── singular.algorithms.TwoColourableProjection.strip_deletions_yielding_two_colourability.doctree │ │ │ ├── singular.algorithms.boundary_triangulation.doctree │ │ │ ├── singular.algorithms.surface_discrete_mapping.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.__init__.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.add_face.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.add_vertex.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.area.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.boundaries.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.boundary_kinks.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.bounding_box.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.bounding_box_xy.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.centroid.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.clear.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.coarse_edge_dense_edges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.collapse_edge.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.collect_polyedge.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.collect_polyedges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.collect_strip.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.collect_strips.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.connected_components.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.copy.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.cull_vertices.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.delete_face.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.delete_face_in_strips.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.delete_vertex.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.densification.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.dual.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_coordinates.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_direction.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_length.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_midpoint.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_point.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_strip.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edge_vector.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edges_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edges_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundaries.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edges_where.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.edges_where_predicate.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.euler.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_adjacency.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_vertices.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_area.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_aspect_ratio.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_center.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_centroid.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_coordinates.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_corners.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_curvature.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_degree.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_flatness.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_halfedges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_max_degree.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_min_degree.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_neighborhood.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_neighbors.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_normal.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_opposite_edge.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_skewness.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_strips.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_vertex_ancestor.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_vertex_descendant.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.face_vertices.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.faces_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.faces_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.faces_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.faces_where.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.faces_where_predicate.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.flip_cycles.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_data.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_json.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_lines.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_obj.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_off.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_pickle.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_ply.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_points.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_polygons.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_polyhedron.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_polylines.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_quad_mesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_shape.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_stl.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_face_poles.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_poles.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.genus.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_any_face.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_any_face_vertex.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_any_vertex.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_any_vertices.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_polygonal_mesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_quad_mesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_strip_densities.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.get_strip_density.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.gkey_key.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.halfedge_face.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.has_edge.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.has_face.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.has_halfedge.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.has_strip_poles.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.has_vertex.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.index_key.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.insert_vertex.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_connected.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_edge_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_empty.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_face_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_face_pseudo_quad.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_manifold.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_orientable.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_pole.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_polyedge_closed.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_quadmesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_regular.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_strip_closed.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_trimesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_valid.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_vertex_connected.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_vertex_full_pole.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_vertex_partial_pole.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_vertex_pole.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.is_vertex_singular.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.key_gkey.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.key_index.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.normal.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.number_of_edges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.number_of_faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.number_of_strips.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.number_of_vertices.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.poles.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.polyedge_graph.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.polyedges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.polylines.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_mesh_density_face_target.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_polygonal_mesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_quad_mesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_strip_density.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_func.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_target.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_strips_density.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_func.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_target.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.singularities.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.singularity_polyedge_decomposition.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.singularity_polyedges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.singularity_polyline_decomposition.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.singularity_polylines.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.smooth_area.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.smooth_centroid.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.split_edge.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.split_face.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strip_edges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strip_faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strip_graph.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strip_side_polyedges.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strip_side_polylines.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.strips.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.summary.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_data.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_json.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_lines.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_obj.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_off.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_pickle.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_ply.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_points.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_polygons.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_polylines.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_quadmesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_stl.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_trimesh.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.to_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.transform.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.transformed.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.unify_cycles.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.unset_edge_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.unset_face_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.unset_vertex_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.update_default_edge_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.update_default_face_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_area.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_centroid.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_coordinates.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_curvature.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_degree.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_index.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_laplacian.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_max_degree.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_min_degree.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_neighbors.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_normal.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertex_pole_faces.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertices.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertices_attribute.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertices_attributes.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundaries.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertices_where.doctree │ │ │ ├── singular.datastructures.CoarsePseudoQuadMesh.vertices_where_predicate.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.__init__.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.add_face.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.add_vertex.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.area.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.boundaries.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.boundary_kinks.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.bounding_box.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.bounding_box_xy.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.centroid.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.clear.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.coarse_edge_dense_edges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.collapse_edge.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.collect_polyedge.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.collect_polyedges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.collect_strip.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.collect_strips.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.connected_components.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.copy.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.cull_vertices.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.delete_face.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.delete_face_in_strips.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.delete_vertex.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.densification.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.dual.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_coordinates.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_direction.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_faces.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_length.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_midpoint.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_point.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_strip.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edge_vector.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edges_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edges_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edges_on_boundaries.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edges_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edges_where.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.edges_where_predicate.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.euler.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_adjacency.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_adjacency_vertices.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_area.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_aspect_ratio.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_center.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_centroid.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_coordinates.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_corners.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_curvature.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_degree.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_flatness.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_halfedges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_max_degree.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_min_degree.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_neighborhood.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_neighbors.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_normal.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_opposite_edge.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_skewness.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_strips.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_vertex_ancestor.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_vertex_descendant.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.face_vertices.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.faces.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.faces_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.faces_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.faces_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.faces_where.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.faces_where_predicate.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.flip_cycles.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_data.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_json.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_lines.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_obj.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_off.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_pickle.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_ply.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_points.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_polygons.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_polyhedron.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_polylines.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_quad_mesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_shape.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_stl.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.from_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.genus.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_any_face.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_any_face_vertex.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_any_vertex.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_any_vertices.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_polygonal_mesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_quad_mesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_strip_densities.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.get_strip_density.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.gkey_key.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.halfedge_face.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.has_edge.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.has_face.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.has_halfedge.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.has_vertex.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.index_key.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.insert_vertex.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_connected.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_edge_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_empty.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_face_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_manifold.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_orientable.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_polyedge_closed.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_quadmesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_regular.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_strip_closed.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_trimesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_valid.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_vertex_connected.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.is_vertex_singular.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.key_gkey.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.key_index.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.normal.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.number_of_edges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.number_of_faces.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.number_of_strips.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.number_of_vertices.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.polyedge_graph.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.polyedges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.polylines.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_mesh_density_face_target.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_polygonal_mesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_quad_mesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_strip_density.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_strip_density_func.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_strip_density_target.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_strips_density.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_strips_density_func.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.set_strips_density_target.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.singularities.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.singularity_polyedge_decomposition.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.singularity_polyedges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.singularity_polyline_decomposition.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.singularity_polylines.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.smooth_area.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.smooth_centroid.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.split_edge.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.split_face.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strip_edges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strip_faces.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strip_graph.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strip_side_polyedges.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strip_side_polylines.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.strips.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.summary.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_data.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_json.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_lines.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_obj.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_off.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_pickle.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_ply.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_points.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_polygons.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_polylines.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_quadmesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_stl.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_trimesh.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.to_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.transform.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.transformed.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.unify_cycles.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.unset_edge_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.unset_face_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.unset_vertex_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.update_default_edge_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.update_default_face_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_area.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_centroid.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_coordinates.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_curvature.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_degree.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_faces.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_index.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_laplacian.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_max_degree.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_min_degree.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_neighborhood.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_neighbors.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_normal.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertices.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertices_attribute.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertices_attributes.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertices_on_boundaries.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertices_on_boundary.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertices_where.doctree │ │ │ ├── singular.datastructures.CoarseQuadMesh.vertices_where_predicate.doctree │ │ │ ├── singular.datastructures.Mesh.__init__.doctree │ │ │ ├── singular.datastructures.Mesh.add_face.doctree │ │ │ ├── singular.datastructures.Mesh.add_vertex.doctree │ │ │ ├── singular.datastructures.Mesh.area.doctree │ │ │ ├── singular.datastructures.Mesh.boundaries.doctree │ │ │ ├── singular.datastructures.Mesh.boundary_kinks.doctree │ │ │ ├── singular.datastructures.Mesh.bounding_box.doctree │ │ │ ├── singular.datastructures.Mesh.bounding_box_xy.doctree │ │ │ ├── singular.datastructures.Mesh.centroid.doctree │ │ │ ├── singular.datastructures.Mesh.clear.doctree │ │ │ ├── singular.datastructures.Mesh.collapse_edge.doctree │ │ │ ├── singular.datastructures.Mesh.connected_components.doctree │ │ │ ├── singular.datastructures.Mesh.copy.doctree │ │ │ ├── singular.datastructures.Mesh.cull_vertices.doctree │ │ │ ├── singular.datastructures.Mesh.delete_face.doctree │ │ │ ├── singular.datastructures.Mesh.delete_vertex.doctree │ │ │ ├── singular.datastructures.Mesh.doctree │ │ │ ├── singular.datastructures.Mesh.dual.doctree │ │ │ ├── singular.datastructures.Mesh.edge_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.edge_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.edge_coordinates.doctree │ │ │ ├── singular.datastructures.Mesh.edge_direction.doctree │ │ │ ├── singular.datastructures.Mesh.edge_faces.doctree │ │ │ ├── singular.datastructures.Mesh.edge_length.doctree │ │ │ ├── singular.datastructures.Mesh.edge_midpoint.doctree │ │ │ ├── singular.datastructures.Mesh.edge_point.doctree │ │ │ ├── singular.datastructures.Mesh.edge_vector.doctree │ │ │ ├── singular.datastructures.Mesh.edges.doctree │ │ │ ├── singular.datastructures.Mesh.edges_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.edges_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.edges_on_boundaries.doctree │ │ │ ├── singular.datastructures.Mesh.edges_on_boundary.doctree │ │ │ ├── singular.datastructures.Mesh.edges_where.doctree │ │ │ ├── singular.datastructures.Mesh.edges_where_predicate.doctree │ │ │ ├── singular.datastructures.Mesh.euler.doctree │ │ │ ├── singular.datastructures.Mesh.face_adjacency.doctree │ │ │ ├── singular.datastructures.Mesh.face_adjacency_halfedge.doctree │ │ │ ├── singular.datastructures.Mesh.face_adjacency_vertices.doctree │ │ │ ├── singular.datastructures.Mesh.face_area.doctree │ │ │ ├── singular.datastructures.Mesh.face_aspect_ratio.doctree │ │ │ ├── singular.datastructures.Mesh.face_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.face_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.face_center.doctree │ │ │ ├── singular.datastructures.Mesh.face_centroid.doctree │ │ │ ├── singular.datastructures.Mesh.face_coordinates.doctree │ │ │ ├── singular.datastructures.Mesh.face_corners.doctree │ │ │ ├── singular.datastructures.Mesh.face_curvature.doctree │ │ │ ├── singular.datastructures.Mesh.face_degree.doctree │ │ │ ├── singular.datastructures.Mesh.face_flatness.doctree │ │ │ ├── singular.datastructures.Mesh.face_halfedges.doctree │ │ │ ├── singular.datastructures.Mesh.face_max_degree.doctree │ │ │ ├── singular.datastructures.Mesh.face_min_degree.doctree │ │ │ ├── singular.datastructures.Mesh.face_neighborhood.doctree │ │ │ ├── singular.datastructures.Mesh.face_neighbors.doctree │ │ │ ├── singular.datastructures.Mesh.face_normal.doctree │ │ │ ├── singular.datastructures.Mesh.face_skewness.doctree │ │ │ ├── singular.datastructures.Mesh.face_vertex_ancestor.doctree │ │ │ ├── singular.datastructures.Mesh.face_vertex_descendant.doctree │ │ │ ├── singular.datastructures.Mesh.face_vertices.doctree │ │ │ ├── singular.datastructures.Mesh.faces.doctree │ │ │ ├── singular.datastructures.Mesh.faces_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.faces_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.faces_on_boundary.doctree │ │ │ ├── singular.datastructures.Mesh.faces_where.doctree │ │ │ ├── singular.datastructures.Mesh.faces_where_predicate.doctree │ │ │ ├── singular.datastructures.Mesh.flip_cycles.doctree │ │ │ ├── singular.datastructures.Mesh.from_data.doctree │ │ │ ├── singular.datastructures.Mesh.from_json.doctree │ │ │ ├── singular.datastructures.Mesh.from_lines.doctree │ │ │ ├── singular.datastructures.Mesh.from_obj.doctree │ │ │ ├── singular.datastructures.Mesh.from_off.doctree │ │ │ ├── singular.datastructures.Mesh.from_pickle.doctree │ │ │ ├── singular.datastructures.Mesh.from_ply.doctree │ │ │ ├── singular.datastructures.Mesh.from_points.doctree │ │ │ ├── singular.datastructures.Mesh.from_polygons.doctree │ │ │ ├── singular.datastructures.Mesh.from_polyhedron.doctree │ │ │ ├── singular.datastructures.Mesh.from_polylines.doctree │ │ │ ├── singular.datastructures.Mesh.from_shape.doctree │ │ │ ├── singular.datastructures.Mesh.from_stl.doctree │ │ │ ├── singular.datastructures.Mesh.from_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.Mesh.genus.doctree │ │ │ ├── singular.datastructures.Mesh.get_any_face.doctree │ │ │ ├── singular.datastructures.Mesh.get_any_face_vertex.doctree │ │ │ ├── singular.datastructures.Mesh.get_any_vertex.doctree │ │ │ ├── singular.datastructures.Mesh.get_any_vertices.doctree │ │ │ ├── singular.datastructures.Mesh.gkey_key.doctree │ │ │ ├── singular.datastructures.Mesh.halfedge_face.doctree │ │ │ ├── singular.datastructures.Mesh.has_edge.doctree │ │ │ ├── singular.datastructures.Mesh.has_face.doctree │ │ │ ├── singular.datastructures.Mesh.has_halfedge.doctree │ │ │ ├── singular.datastructures.Mesh.has_vertex.doctree │ │ │ ├── singular.datastructures.Mesh.index_key.doctree │ │ │ ├── singular.datastructures.Mesh.insert_vertex.doctree │ │ │ ├── singular.datastructures.Mesh.is_boundary_vertex_kink.doctree │ │ │ ├── singular.datastructures.Mesh.is_connected.doctree │ │ │ ├── singular.datastructures.Mesh.is_edge_on_boundary.doctree │ │ │ ├── singular.datastructures.Mesh.is_empty.doctree │ │ │ ├── singular.datastructures.Mesh.is_face_on_boundary.doctree │ │ │ ├── singular.datastructures.Mesh.is_manifold.doctree │ │ │ ├── singular.datastructures.Mesh.is_orientable.doctree │ │ │ ├── singular.datastructures.Mesh.is_quadmesh.doctree │ │ │ ├── singular.datastructures.Mesh.is_regular.doctree │ │ │ ├── singular.datastructures.Mesh.is_trimesh.doctree │ │ │ ├── singular.datastructures.Mesh.is_valid.doctree │ │ │ ├── singular.datastructures.Mesh.is_vertex_connected.doctree │ │ │ ├── singular.datastructures.Mesh.is_vertex_on_boundary.doctree │ │ │ ├── singular.datastructures.Mesh.key_gkey.doctree │ │ │ ├── singular.datastructures.Mesh.key_index.doctree │ │ │ ├── singular.datastructures.Mesh.normal.doctree │ │ │ ├── singular.datastructures.Mesh.number_of_edges.doctree │ │ │ ├── singular.datastructures.Mesh.number_of_faces.doctree │ │ │ ├── singular.datastructures.Mesh.number_of_vertices.doctree │ │ │ ├── singular.datastructures.Mesh.smooth_area.doctree │ │ │ ├── singular.datastructures.Mesh.smooth_centroid.doctree │ │ │ ├── singular.datastructures.Mesh.split_edge.doctree │ │ │ ├── singular.datastructures.Mesh.split_face.doctree │ │ │ ├── singular.datastructures.Mesh.summary.doctree │ │ │ ├── singular.datastructures.Mesh.to_data.doctree │ │ │ ├── singular.datastructures.Mesh.to_json.doctree │ │ │ ├── singular.datastructures.Mesh.to_lines.doctree │ │ │ ├── singular.datastructures.Mesh.to_obj.doctree │ │ │ ├── singular.datastructures.Mesh.to_off.doctree │ │ │ ├── singular.datastructures.Mesh.to_pickle.doctree │ │ │ ├── singular.datastructures.Mesh.to_ply.doctree │ │ │ ├── singular.datastructures.Mesh.to_points.doctree │ │ │ ├── singular.datastructures.Mesh.to_polygons.doctree │ │ │ ├── singular.datastructures.Mesh.to_polylines.doctree │ │ │ ├── singular.datastructures.Mesh.to_quadmesh.doctree │ │ │ ├── singular.datastructures.Mesh.to_stl.doctree │ │ │ ├── singular.datastructures.Mesh.to_trimesh.doctree │ │ │ ├── singular.datastructures.Mesh.to_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.Mesh.transform.doctree │ │ │ ├── singular.datastructures.Mesh.transformed.doctree │ │ │ ├── singular.datastructures.Mesh.unify_cycles.doctree │ │ │ ├── singular.datastructures.Mesh.unset_edge_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.unset_face_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.unset_vertex_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.update_default_edge_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.update_default_face_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.update_default_vertex_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_area.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_centroid.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_coordinates.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_curvature.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_degree.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_faces.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_laplacian.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_max_degree.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_min_degree.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_neighborhood.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_neighbors.doctree │ │ │ ├── singular.datastructures.Mesh.vertex_normal.doctree │ │ │ ├── singular.datastructures.Mesh.vertices.doctree │ │ │ ├── singular.datastructures.Mesh.vertices_attribute.doctree │ │ │ ├── singular.datastructures.Mesh.vertices_attributes.doctree │ │ │ ├── singular.datastructures.Mesh.vertices_on_boundaries.doctree │ │ │ ├── singular.datastructures.Mesh.vertices_on_boundary.doctree │ │ │ ├── singular.datastructures.Mesh.vertices_where.doctree │ │ │ ├── singular.datastructures.Mesh.vertices_where_predicate.doctree │ │ │ ├── singular.datastructures.Network.__init__.doctree │ │ │ ├── singular.datastructures.Network.add_edge.doctree │ │ │ ├── singular.datastructures.Network.add_node.doctree │ │ │ ├── singular.datastructures.Network.clear.doctree │ │ │ ├── singular.datastructures.Network.connected_edges.doctree │ │ │ ├── singular.datastructures.Network.copy.doctree │ │ │ ├── singular.datastructures.Network.degree.doctree │ │ │ ├── singular.datastructures.Network.degree_in.doctree │ │ │ ├── singular.datastructures.Network.degree_out.doctree │ │ │ ├── singular.datastructures.Network.delete_edge.doctree │ │ │ ├── singular.datastructures.Network.delete_node.doctree │ │ │ ├── singular.datastructures.Network.doctree │ │ │ ├── singular.datastructures.Network.edge_attribute.doctree │ │ │ ├── singular.datastructures.Network.edge_attributes.doctree │ │ │ ├── singular.datastructures.Network.edge_coordinates.doctree │ │ │ ├── singular.datastructures.Network.edge_direction.doctree │ │ │ ├── singular.datastructures.Network.edge_length.doctree │ │ │ ├── singular.datastructures.Network.edge_midpoint.doctree │ │ │ ├── singular.datastructures.Network.edge_point.doctree │ │ │ ├── singular.datastructures.Network.edge_vector.doctree │ │ │ ├── singular.datastructures.Network.edges.doctree │ │ │ ├── singular.datastructures.Network.edges_attribute.doctree │ │ │ ├── singular.datastructures.Network.edges_attributes.doctree │ │ │ ├── singular.datastructures.Network.edges_where.doctree │ │ │ ├── singular.datastructures.Network.edges_where_predicate.doctree │ │ │ ├── singular.datastructures.Network.from_data.doctree │ │ │ ├── singular.datastructures.Network.from_edges.doctree │ │ │ ├── singular.datastructures.Network.from_json.doctree │ │ │ ├── singular.datastructures.Network.from_lines.doctree │ │ │ ├── singular.datastructures.Network.from_networkx.doctree │ │ │ ├── singular.datastructures.Network.from_nodes_and_edges.doctree │ │ │ ├── singular.datastructures.Network.from_obj.doctree │ │ │ ├── singular.datastructures.Network.get_any_edge.doctree │ │ │ ├── singular.datastructures.Network.get_any_edges.doctree │ │ │ ├── singular.datastructures.Network.get_any_node.doctree │ │ │ ├── singular.datastructures.Network.get_any_nodes.doctree │ │ │ ├── singular.datastructures.Network.gkey_key.doctree │ │ │ ├── singular.datastructures.Network.has_edge.doctree │ │ │ ├── singular.datastructures.Network.has_node.doctree │ │ │ ├── singular.datastructures.Network.index_key.doctree │ │ │ ├── singular.datastructures.Network.index_uv.doctree │ │ │ ├── singular.datastructures.Network.is_leaf.doctree │ │ │ ├── singular.datastructures.Network.is_node_connected.doctree │ │ │ ├── singular.datastructures.Network.key_gkey.doctree │ │ │ ├── singular.datastructures.Network.key_index.doctree │ │ │ ├── singular.datastructures.Network.leaves.doctree │ │ │ ├── singular.datastructures.Network.neighborhood.doctree │ │ │ ├── singular.datastructures.Network.neighbors.doctree │ │ │ ├── singular.datastructures.Network.neighbors_in.doctree │ │ │ ├── singular.datastructures.Network.neighbors_out.doctree │ │ │ ├── singular.datastructures.Network.node_attribute.doctree │ │ │ ├── singular.datastructures.Network.node_attributes.doctree │ │ │ ├── singular.datastructures.Network.node_coordinates.doctree │ │ │ ├── singular.datastructures.Network.node_laplacian.doctree │ │ │ ├── singular.datastructures.Network.node_neighborhood_centroid.doctree │ │ │ ├── singular.datastructures.Network.nodes.doctree │ │ │ ├── singular.datastructures.Network.nodes_attribute.doctree │ │ │ ├── singular.datastructures.Network.nodes_attributes.doctree │ │ │ ├── singular.datastructures.Network.nodes_where.doctree │ │ │ ├── singular.datastructures.Network.nodes_where_predicate.doctree │ │ │ ├── singular.datastructures.Network.number_of_edges.doctree │ │ │ ├── singular.datastructures.Network.number_of_nodes.doctree │ │ │ ├── singular.datastructures.Network.split_edge.doctree │ │ │ ├── singular.datastructures.Network.summary.doctree │ │ │ ├── singular.datastructures.Network.to_data.doctree │ │ │ ├── singular.datastructures.Network.to_json.doctree │ │ │ ├── singular.datastructures.Network.to_lines.doctree │ │ │ ├── singular.datastructures.Network.to_networkx.doctree │ │ │ ├── singular.datastructures.Network.to_nodes_and_edges.doctree │ │ │ ├── singular.datastructures.Network.to_obj.doctree │ │ │ ├── singular.datastructures.Network.to_points.doctree │ │ │ ├── singular.datastructures.Network.unset_edge_attribute.doctree │ │ │ ├── singular.datastructures.Network.unset_node_attribute.doctree │ │ │ ├── singular.datastructures.Network.update_default_edge_attributes.doctree │ │ │ ├── singular.datastructures.Network.update_default_node_attributes.doctree │ │ │ ├── singular.datastructures.Network.uv_index.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.__init__.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.add_face.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.add_vertex.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.area.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.boundaries.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.boundary_kinks.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.bounding_box.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.bounding_box_xy.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.centroid.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.clear.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.collapse_edge.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.collect_polyedge.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.collect_polyedges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.collect_strip.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.collect_strips.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.connected_components.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.copy.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.cull_vertices.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.delete_face.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.delete_face_in_strips.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.delete_vertex.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.dual.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_coordinates.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_direction.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_length.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_midpoint.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_point.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_strip.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edge_vector.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edges_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edges_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edges_on_boundaries.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edges_on_boundary.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edges_where.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.edges_where_predicate.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.euler.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_adjacency.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_adjacency_vertices.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_area.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_aspect_ratio.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_center.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_centroid.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_coordinates.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_corners.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_curvature.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_degree.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_flatness.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_halfedges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_max_degree.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_min_degree.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_neighborhood.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_neighbors.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_normal.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_opposite_edge.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_skewness.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_strips.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_vertex_ancestor.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_vertex_descendant.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.face_vertices.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.faces_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.faces_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.faces_on_boundary.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.faces_where.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.faces_where_predicate.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.flip_cycles.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_data.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_json.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_lines.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_obj.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_off.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_pickle.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_ply.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_points.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_polygons.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_polyhedron.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_polylines.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_shape.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_stl.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_face_poles.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_poles.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.genus.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.get_any_face.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.get_any_face_vertex.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.get_any_vertex.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.get_any_vertices.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.gkey_key.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.halfedge_face.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.has_edge.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.has_face.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.has_halfedge.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.has_strip_poles.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.has_vertex.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.index_key.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.insert_vertex.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_connected.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_edge_on_boundary.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_empty.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_face_on_boundary.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_face_pseudo_quad.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_manifold.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_orientable.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_pole.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_polyedge_closed.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_quadmesh.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_regular.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_strip_closed.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_trimesh.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_valid.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_vertex_connected.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_vertex_full_pole.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_vertex_partial_pole.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_vertex_pole.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.is_vertex_singular.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.key_gkey.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.key_index.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.normal.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.number_of_edges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.number_of_faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.number_of_strips.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.number_of_vertices.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.poles.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.polyedge_graph.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.polyedges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.polylines.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.singularities.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.singularity_polyedge_decomposition.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.singularity_polyedges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.singularity_polyline_decomposition.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.singularity_polylines.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.smooth_area.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.smooth_centroid.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.split_edge.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.split_face.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strip_edges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strip_faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strip_graph.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strip_side_polyedges.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strip_side_polylines.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.strips.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.summary.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_data.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_json.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_lines.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_obj.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_off.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_pickle.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_ply.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_points.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_polygons.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_polylines.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_quadmesh.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_stl.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_trimesh.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.to_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.transform.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.transformed.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.unify_cycles.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.unset_edge_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.unset_face_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.unset_vertex_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.update_default_edge_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.update_default_face_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_area.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_centroid.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_coordinates.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_curvature.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_degree.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_index.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_laplacian.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_max_degree.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_min_degree.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_neighborhood.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_neighbors.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_normal.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertex_pole_faces.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertices.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertices_attribute.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertices_attributes.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertices_on_boundaries.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertices_on_boundary.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertices_where.doctree │ │ │ ├── singular.datastructures.PseudoQuadMesh.vertices_where_predicate.doctree │ │ │ ├── singular.datastructures.QuadMesh.__init__.doctree │ │ │ ├── singular.datastructures.QuadMesh.add_face.doctree │ │ │ ├── singular.datastructures.QuadMesh.add_vertex.doctree │ │ │ ├── singular.datastructures.QuadMesh.area.doctree │ │ │ ├── singular.datastructures.QuadMesh.boundaries.doctree │ │ │ ├── singular.datastructures.QuadMesh.boundary_kinks.doctree │ │ │ ├── singular.datastructures.QuadMesh.bounding_box.doctree │ │ │ ├── singular.datastructures.QuadMesh.bounding_box_xy.doctree │ │ │ ├── singular.datastructures.QuadMesh.centroid.doctree │ │ │ ├── singular.datastructures.QuadMesh.clear.doctree │ │ │ ├── singular.datastructures.QuadMesh.collapse_edge.doctree │ │ │ ├── singular.datastructures.QuadMesh.collect_polyedge.doctree │ │ │ ├── singular.datastructures.QuadMesh.collect_polyedges.doctree │ │ │ ├── singular.datastructures.QuadMesh.collect_strip.doctree │ │ │ ├── singular.datastructures.QuadMesh.collect_strips.doctree │ │ │ ├── singular.datastructures.QuadMesh.connected_components.doctree │ │ │ ├── singular.datastructures.QuadMesh.copy.doctree │ │ │ ├── singular.datastructures.QuadMesh.cull_vertices.doctree │ │ │ ├── singular.datastructures.QuadMesh.delete_face.doctree │ │ │ ├── singular.datastructures.QuadMesh.delete_face_in_strips.doctree │ │ │ ├── singular.datastructures.QuadMesh.delete_vertex.doctree │ │ │ ├── singular.datastructures.QuadMesh.doctree │ │ │ ├── singular.datastructures.QuadMesh.dual.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_coordinates.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_direction.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_faces.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_length.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_midpoint.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_point.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_strip.doctree │ │ │ ├── singular.datastructures.QuadMesh.edge_vector.doctree │ │ │ ├── singular.datastructures.QuadMesh.edges.doctree │ │ │ ├── singular.datastructures.QuadMesh.edges_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.edges_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.edges_on_boundaries.doctree │ │ │ ├── singular.datastructures.QuadMesh.edges_on_boundary.doctree │ │ │ ├── singular.datastructures.QuadMesh.edges_where.doctree │ │ │ ├── singular.datastructures.QuadMesh.edges_where_predicate.doctree │ │ │ ├── singular.datastructures.QuadMesh.euler.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_adjacency.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_adjacency_halfedge.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_adjacency_vertices.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_area.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_aspect_ratio.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_center.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_centroid.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_coordinates.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_corners.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_curvature.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_degree.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_flatness.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_halfedges.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_max_degree.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_min_degree.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_neighborhood.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_neighbors.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_normal.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_opposite_edge.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_skewness.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_strips.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_vertex_ancestor.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_vertex_descendant.doctree │ │ │ ├── singular.datastructures.QuadMesh.face_vertices.doctree │ │ │ ├── singular.datastructures.QuadMesh.faces.doctree │ │ │ ├── singular.datastructures.QuadMesh.faces_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.faces_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.faces_on_boundary.doctree │ │ │ ├── singular.datastructures.QuadMesh.faces_where.doctree │ │ │ ├── singular.datastructures.QuadMesh.faces_where_predicate.doctree │ │ │ ├── singular.datastructures.QuadMesh.flip_cycles.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_data.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_json.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_lines.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_obj.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_off.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_pickle.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_ply.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_points.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_polygons.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_polyhedron.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_polylines.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_shape.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_stl.doctree │ │ │ ├── singular.datastructures.QuadMesh.from_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.QuadMesh.genus.doctree │ │ │ ├── singular.datastructures.QuadMesh.get_any_face.doctree │ │ │ ├── singular.datastructures.QuadMesh.get_any_face_vertex.doctree │ │ │ ├── singular.datastructures.QuadMesh.get_any_vertex.doctree │ │ │ ├── singular.datastructures.QuadMesh.get_any_vertices.doctree │ │ │ ├── singular.datastructures.QuadMesh.gkey_key.doctree │ │ │ ├── singular.datastructures.QuadMesh.halfedge_face.doctree │ │ │ ├── singular.datastructures.QuadMesh.has_edge.doctree │ │ │ ├── singular.datastructures.QuadMesh.has_face.doctree │ │ │ ├── singular.datastructures.QuadMesh.has_halfedge.doctree │ │ │ ├── singular.datastructures.QuadMesh.has_vertex.doctree │ │ │ ├── singular.datastructures.QuadMesh.index_key.doctree │ │ │ ├── singular.datastructures.QuadMesh.insert_vertex.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_boundary_vertex_kink.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_connected.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_edge_on_boundary.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_empty.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_face_on_boundary.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_manifold.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_orientable.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_polyedge_closed.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_quadmesh.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_regular.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_strip_closed.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_trimesh.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_valid.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_vertex_connected.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_vertex_on_boundary.doctree │ │ │ ├── singular.datastructures.QuadMesh.is_vertex_singular.doctree │ │ │ ├── singular.datastructures.QuadMesh.key_gkey.doctree │ │ │ ├── singular.datastructures.QuadMesh.key_index.doctree │ │ │ ├── singular.datastructures.QuadMesh.normal.doctree │ │ │ ├── singular.datastructures.QuadMesh.number_of_edges.doctree │ │ │ ├── singular.datastructures.QuadMesh.number_of_faces.doctree │ │ │ ├── singular.datastructures.QuadMesh.number_of_strips.doctree │ │ │ ├── singular.datastructures.QuadMesh.number_of_vertices.doctree │ │ │ ├── singular.datastructures.QuadMesh.polyedge_graph.doctree │ │ │ ├── singular.datastructures.QuadMesh.polyedges.doctree │ │ │ ├── singular.datastructures.QuadMesh.polylines.doctree │ │ │ ├── singular.datastructures.QuadMesh.singularities.doctree │ │ │ ├── singular.datastructures.QuadMesh.singularity_polyedge_decomposition.doctree │ │ │ ├── singular.datastructures.QuadMesh.singularity_polyedges.doctree │ │ │ ├── singular.datastructures.QuadMesh.singularity_polyline_decomposition.doctree │ │ │ ├── singular.datastructures.QuadMesh.singularity_polylines.doctree │ │ │ ├── singular.datastructures.QuadMesh.smooth_area.doctree │ │ │ ├── singular.datastructures.QuadMesh.smooth_centroid.doctree │ │ │ ├── singular.datastructures.QuadMesh.split_edge.doctree │ │ │ ├── singular.datastructures.QuadMesh.split_face.doctree │ │ │ ├── singular.datastructures.QuadMesh.strip_edge_midpoint_polyline.doctree │ │ │ ├── singular.datastructures.QuadMesh.strip_edges.doctree │ │ │ ├── singular.datastructures.QuadMesh.strip_face_centroid_polyline.doctree │ │ │ ├── singular.datastructures.QuadMesh.strip_faces.doctree │ │ │ ├── singular.datastructures.QuadMesh.strip_graph.doctree │ │ │ ├── singular.datastructures.QuadMesh.strip_side_polyedges.doctree │ │ │ ├── singular.datastructures.QuadMesh.strip_side_polylines.doctree │ │ │ ├── singular.datastructures.QuadMesh.strips.doctree │ │ │ ├── singular.datastructures.QuadMesh.substitute_vertex_in_strips.doctree │ │ │ ├── singular.datastructures.QuadMesh.summary.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_data.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_json.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_lines.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_obj.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_off.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_pickle.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_ply.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_points.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_polygons.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_polylines.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_quadmesh.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_stl.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_trimesh.doctree │ │ │ ├── singular.datastructures.QuadMesh.to_vertices_and_faces.doctree │ │ │ ├── singular.datastructures.QuadMesh.transform.doctree │ │ │ ├── singular.datastructures.QuadMesh.transformed.doctree │ │ │ ├── singular.datastructures.QuadMesh.unify_cycles.doctree │ │ │ ├── singular.datastructures.QuadMesh.unset_edge_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.unset_face_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.unset_vertex_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.update_default_edge_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.update_default_face_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.update_default_vertex_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_area.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_centroid.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_coordinates.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_curvature.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_degree.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_faces.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_index.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_laplacian.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_max_degree.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_min_degree.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_neighborhood.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_neighborhood_centroid.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_neighbors.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_normal.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertex_opposite_vertex.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertices.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertices_attribute.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertices_attributes.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertices_on_boundaries.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertices_on_boundary.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertices_where.doctree │ │ │ ├── singular.datastructures.QuadMesh.vertices_where_predicate.doctree │ │ │ ├── singular.datastructures.add_and_delete_strips.doctree │ │ │ ├── singular.datastructures.add_handle.doctree │ │ │ ├── singular.datastructures.add_opening.doctree │ │ │ ├── singular.datastructures.add_strip.doctree │ │ │ ├── singular.datastructures.add_strips.doctree │ │ │ ├── singular.datastructures.automated_smoothing_constraints.doctree │ │ │ ├── singular.datastructures.automated_smoothing_surface_constraints.doctree │ │ │ ├── singular.datastructures.collateral_strip_deletions.doctree │ │ │ ├── singular.datastructures.constrained_smoothing.doctree │ │ │ ├── singular.datastructures.customized_smoothing_constraints.doctree │ │ │ ├── singular.datastructures.delete_strip.doctree │ │ │ ├── singular.datastructures.delete_strips.doctree │ │ │ ├── singular.datastructures.dense_quad_mesh_polyedge_2_coloring.doctree │ │ │ ├── singular.datastructures.display_smoothing_constraints.doctree │ │ │ ├── singular.datastructures.fold.doctree │ │ │ ├── singular.datastructures.fold_vertex_group.doctree │ │ │ ├── singular.datastructures.merge_pseudo_quads_in_quad.doctree │ │ │ ├── singular.datastructures.mesh_face_2_coloring.doctree │ │ │ ├── singular.datastructures.mesh_face_n_coloring.doctree │ │ │ ├── singular.datastructures.mesh_move_by.doctree │ │ │ ├── singular.datastructures.mesh_move_vertex_by.doctree │ │ │ ├── singular.datastructures.mesh_move_vertex_to.doctree │ │ │ ├── singular.datastructures.mesh_move_vertices_by.doctree │ │ │ ├── singular.datastructures.mesh_move_vertices_to.doctree │ │ │ ├── singular.datastructures.mesh_vertex_2_coloring.doctree │ │ │ ├── singular.datastructures.mesh_vertex_n_coloring.doctree │ │ │ ├── singular.datastructures.quad_mesh_polyedge_2_coloring.doctree │ │ │ ├── singular.datastructures.quad_mesh_polyedge_n_coloring.doctree │ │ │ ├── singular.datastructures.quad_mesh_strip_2_coloring.doctree │ │ │ ├── singular.datastructures.quad_mesh_strip_n_coloring.doctree │ │ │ ├── singular.datastructures.split_quad_in_pseudo_quads.doctree │ │ │ ├── singular.datastructures.split_strip.doctree │ │ │ ├── singular.datastructures.split_strips.doctree │ │ │ ├── singular.datastructures.strip_polyedge_update.doctree │ │ │ ├── singular.datastructures.strips_to_split_to_prevent_boundary_collapse.doctree │ │ │ ├── singular.datastructures.surface_constrained_smoothing.doctree │ │ │ ├── singular.datastructures.total_boundary_deletions.doctree │ │ │ ├── singular.geometry.Polyline.__init__.doctree │ │ │ ├── singular.geometry.Polyline.copy.doctree │ │ │ ├── singular.geometry.Polyline.doctree │ │ │ ├── singular.geometry.Polyline.from_data.doctree │ │ │ ├── singular.geometry.Polyline.is_closed.doctree │ │ │ ├── singular.geometry.Polyline.is_selfintersecting.doctree │ │ │ ├── singular.geometry.Polyline.point.doctree │ │ │ ├── singular.geometry.Polyline.to_data.doctree │ │ │ ├── singular.geometry.Polyline.transform.doctree │ │ │ ├── singular.geometry.Polyline.transformed.doctree │ │ │ ├── singular.geometry.Polyline.vertex_curvature.doctree │ │ │ ├── singular.geometry.circular_array.doctree │ │ │ ├── singular.geometry.closest_point_on_circle.doctree │ │ │ ├── singular.geometry.closest_point_on_line.doctree │ │ │ ├── singular.geometry.closest_point_on_polyline.doctree │ │ │ ├── singular.geometry.closest_point_on_polylines.doctree │ │ │ ├── singular.geometry.closest_point_on_segment.doctree │ │ │ ├── singular.geometry.line_array.doctree │ │ │ ├── singular.geometry.rectangular_array.doctree │ │ │ ├── singular.geometry.spiral_array.doctree │ │ │ ├── singular.rhino.RhinoCurve.__init__.doctree │ │ │ ├── singular.rhino.RhinoCurve.closest_point.doctree │ │ │ ├── singular.rhino.RhinoCurve.closest_points.doctree │ │ │ ├── singular.rhino.RhinoCurve.divide.doctree │ │ │ ├── singular.rhino.RhinoCurve.divide_length.doctree │ │ │ ├── singular.rhino.RhinoCurve.doctree │ │ │ ├── singular.rhino.RhinoCurve.from_geometry.doctree │ │ │ ├── singular.rhino.RhinoCurve.from_guid.doctree │ │ │ ├── singular.rhino.RhinoCurve.from_object.doctree │ │ │ ├── singular.rhino.RhinoCurve.from_selection.doctree │ │ │ ├── singular.rhino.RhinoCurve.is_circle.doctree │ │ │ ├── singular.rhino.RhinoCurve.is_closed.doctree │ │ │ ├── singular.rhino.RhinoCurve.is_line.doctree │ │ │ ├── singular.rhino.RhinoCurve.is_nurbs.doctree │ │ │ ├── singular.rhino.RhinoCurve.is_polygon.doctree │ │ │ ├── singular.rhino.RhinoCurve.is_polyline.doctree │ │ │ ├── singular.rhino.RhinoCurve.length.doctree │ │ │ ├── singular.rhino.RhinoCurve.space.doctree │ │ │ ├── singular.rhino.RhinoCurve.tangents.doctree │ │ │ ├── singular.rhino.RhinoCurve.to_compas.doctree │ │ │ ├── singular.rhino.RhinoCurve.transform.doctree │ │ │ ├── singular.rhino.RhinoSurface.__init__.doctree │ │ │ ├── singular.rhino.RhinoSurface.borders.doctree │ │ │ ├── singular.rhino.RhinoSurface.brep_to_compas.doctree │ │ │ ├── singular.rhino.RhinoSurface.closest_point.doctree │ │ │ ├── singular.rhino.RhinoSurface.closest_point_on_boundaries.doctree │ │ │ ├── singular.rhino.RhinoSurface.closest_points.doctree │ │ │ ├── singular.rhino.RhinoSurface.closest_points_on_boundaries.doctree │ │ │ ├── singular.rhino.RhinoSurface.doctree │ │ │ ├── singular.rhino.RhinoSurface.from_geometry.doctree │ │ │ ├── singular.rhino.RhinoSurface.from_guid.doctree │ │ │ ├── singular.rhino.RhinoSurface.from_object.doctree │ │ │ ├── singular.rhino.RhinoSurface.from_selection.doctree │ │ │ ├── singular.rhino.RhinoSurface.heightfield.doctree │ │ │ ├── singular.rhino.RhinoSurface.heightfield_to_compas.doctree │ │ │ ├── singular.rhino.RhinoSurface.kinks.doctree │ │ │ ├── singular.rhino.RhinoSurface.line_uv_to_xyz.doctree │ │ │ ├── singular.rhino.RhinoSurface.mesh_uv_to_xyz.doctree │ │ │ ├── singular.rhino.RhinoSurface.point_uv_to_xyz.doctree │ │ │ ├── singular.rhino.RhinoSurface.point_xyz_to_uv.doctree │ │ │ ├── singular.rhino.RhinoSurface.polyline_uv_to_xyz.doctree │ │ │ ├── singular.rhino.RhinoSurface.space.doctree │ │ │ ├── singular.rhino.RhinoSurface.to_compas.doctree │ │ │ ├── singular.rhino.RhinoSurface.transform.doctree │ │ │ ├── singular.rhino.RhinoSurface.uv_to_compas.doctree │ │ │ ├── singular.rhino.draw_graph.doctree │ │ │ ├── singular.rhino.select_mesh_polyedge.doctree │ │ │ ├── singular.rhino.select_quad_mesh_polyedge.doctree │ │ │ ├── singular.rhino.select_quad_mesh_strip.doctree │ │ │ ├── singular.topology.is_adjacency_two_colorable.doctree │ │ │ ├── singular.utilities.are_items_in_list.doctree │ │ │ ├── singular.utilities.common_items.doctree │ │ │ ├── singular.utilities.extract_pareto_indices.doctree │ │ │ ├── singular.utilities.is_dominating.doctree │ │ │ ├── singular.utilities.list_split.doctree │ │ │ ├── singular.utilities.remove_isomorphism_in_integer_list.doctree │ │ │ └── singular.utilities.sublist_from_to_items_in_closed_list.doctree │ │ ├── singular.algorithms.doctree │ │ ├── singular.datastructures.doctree │ │ ├── singular.doctree │ │ ├── singular.geometry.doctree │ │ ├── singular.rhino.doctree │ │ ├── singular.topology.doctree │ │ └── singular.utilities.doctree │ ├── environment.pickle │ ├── examples │ │ ├── 00_densification.doctree │ │ └── 01_decomposition.doctree │ └── index.doctree ├── .nojekyll ├── 00_introduction.html ├── 01_getting_started.html ├── 02_overview.html ├── 03_examples.html ├── 04_api.html ├── 05_license.html ├── 06_citing.html ├── 07_publications.html ├── PLACEHOLDER ├── _images │ ├── 00_densification_0.png │ ├── 00_densification_1.png │ ├── 00_densification_2.png │ ├── 00_densification_3.png │ ├── 00_densification_poles_0.png │ ├── 00_densification_poles_1.png │ ├── 01_decomposition_1.png │ ├── 01_decomposition_2.png │ ├── 01_decomposition_3.png │ ├── 01_front.jpg │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.png │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.png │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.png │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.png │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.png │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.png │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.png │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.png │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.png │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.png │ ├── compas_singular-datastructures-Mesh-smooth_area-1.png │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.png │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.png │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.png │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.png │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.png │ ├── singular-algorithms-DecompositionRemap-smooth_area-1.png │ ├── singular-algorithms-DecompositionRemap-smooth_centroid-1.png │ ├── singular-algorithms-Skeleton-smooth_area-1.png │ ├── singular-algorithms-Skeleton-smooth_centroid-1.png │ ├── singular-algorithms-SkeletonDecomposition-smooth_area-1.png │ ├── singular-algorithms-SkeletonDecomposition-smooth_centroid-1.png │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.png │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.png │ ├── singular-datastructures-CoarseQuadMesh-smooth_area-1.png │ ├── singular-datastructures-CoarseQuadMesh-smooth_centroid-1.png │ ├── singular-datastructures-Mesh-smooth_area-1.png │ ├── singular-datastructures-Mesh-smooth_centroid-1.png │ ├── singular-datastructures-PseudoQuadMesh-smooth_area-1.png │ ├── singular-datastructures-PseudoQuadMesh-smooth_centroid-1.png │ ├── singular-datastructures-QuadMesh-smooth_area-1.png │ └── singular-datastructures-QuadMesh-smooth_centroid-1.png ├── _static │ ├── basic.css │ ├── css │ │ ├── compas-reference.css │ │ ├── compas-reference.css.map │ │ ├── compas.css │ │ └── prism.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── images │ │ ├── compas.ico │ │ ├── compas_icon.png │ │ ├── compas_icon_white.png │ │ └── compas_white.ico │ ├── jquery-3.4.1.js │ ├── jquery.js │ ├── js │ │ ├── bootstrap.js │ │ ├── prism.js │ │ └── searchtools_.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ └── underscore.js ├── api │ ├── compas_singular.algorithms.html │ ├── compas_singular.datastructures.html │ ├── compas_singular.geometry.html │ ├── compas_singular.html │ ├── compas_singular.rhino.html │ ├── compas_singular.topology.html │ ├── compas_singular.utilities.html │ ├── examples │ │ ├── 00_densification.rst │ │ └── 01_decomposition.rst │ ├── generated │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.hires.png │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.pdf │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.png │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.py │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.hires.png │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.pdf │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.png │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.py │ │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.hires.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.pdf │ │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.py │ │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.hires.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.pdf │ │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.py │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.hires.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.pdf │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.py │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.hires.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.pdf │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.py │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.py │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.py │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.py │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.py │ │ ├── compas_singular-datastructures-Mesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-Mesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-Mesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-Mesh-smooth_area-1.py │ │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.py │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.py │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.py │ │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.py │ │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.py │ │ ├── compas_singular.algorithms.DecompositionRemap.__init__.html │ │ ├── compas_singular.algorithms.DecompositionRemap.add_face.html │ │ ├── compas_singular.algorithms.DecompositionRemap.add_vertex.html │ │ ├── compas_singular.algorithms.DecompositionRemap.area.html │ │ ├── compas_singular.algorithms.DecompositionRemap.boundaries.html │ │ ├── compas_singular.algorithms.DecompositionRemap.boundary_kinks.html │ │ ├── compas_singular.algorithms.DecompositionRemap.bounding_box.html │ │ ├── compas_singular.algorithms.DecompositionRemap.bounding_box_xy.html │ │ ├── compas_singular.algorithms.DecompositionRemap.branches.html │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_compas_singularity_to_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_compas_singularity_to_compas_singularity.html │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_boundary_kinks.html │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_collapsed_boundaries.html │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_flipped_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.centroid.html │ │ ├── compas_singular.algorithms.DecompositionRemap.clear.html │ │ ├── compas_singular.algorithms.DecompositionRemap.collapse_edge.html │ │ ├── compas_singular.algorithms.DecompositionRemap.compas_singular_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.compas_singular_points.html │ │ ├── compas_singular.algorithms.DecompositionRemap.connected_components.html │ │ ├── compas_singular.algorithms.DecompositionRemap.copy.html │ │ ├── compas_singular.algorithms.DecompositionRemap.corner_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.corner_vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.cull_vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.cut.html │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_curves.html │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_delaunay.html │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_mesh.html │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polyline.html │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polylines.html │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polysurface.html │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_skeleton.html │ │ ├── compas_singular.algorithms.DecompositionRemap.delete_face.html │ │ ├── compas_singular.algorithms.DecompositionRemap.delete_vertex.html │ │ ├── compas_singular.algorithms.DecompositionRemap.dual.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_coordinates.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_direction.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_length.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_midpoint.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_point.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_vector.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edges.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_on_boundaries.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_on_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_where.html │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_where_predicate.html │ │ ├── compas_singular.algorithms.DecompositionRemap.euler.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency_halfedge.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency_vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_area.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_aspect_ratio.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_center.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_centroid.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_coordinates.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_corners.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_curvature.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_degree.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_flatness.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_halfedges.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_max_degree.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_min_degree.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_neighborhood.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_neighbors.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_normal.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_skewness.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertex_ancestor.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertex_descendant.html │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_on_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_where.html │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_where_predicate.html │ │ ├── compas_singular.algorithms.DecompositionRemap.flip_cycles.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_data.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_json.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_lines.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_mesh.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_obj.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_off.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_pickle.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_ply.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_points.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polygons.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polyhedron.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polylines.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_shape.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_skeleton.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_stl.html │ │ ├── compas_singular.algorithms.DecompositionRemap.from_vertices_and_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.genus.html │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_face.html │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_face_vertex.html │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_vertex.html │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.gkey_key.html │ │ ├── compas_singular.algorithms.DecompositionRemap.halfedge_face.html │ │ ├── compas_singular.algorithms.DecompositionRemap.has_edge.html │ │ ├── compas_singular.algorithms.DecompositionRemap.has_face.html │ │ ├── compas_singular.algorithms.DecompositionRemap.has_halfedge.html │ │ ├── compas_singular.algorithms.DecompositionRemap.has_vertex.html │ │ ├── compas_singular.algorithms.DecompositionRemap.html │ │ ├── compas_singular.algorithms.DecompositionRemap.index_key.html │ │ ├── compas_singular.algorithms.DecompositionRemap.insert_vertex.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_boundary_vertex_kink.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_connected.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_edge_on_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_empty.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_face_on_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_manifold.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_orientable.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_quadmesh.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_regular.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_trimesh.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_valid.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_vertex_connected.html │ │ ├── compas_singular.algorithms.DecompositionRemap.is_vertex_on_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.join.html │ │ ├── compas_singular.algorithms.DecompositionRemap.key_gkey.html │ │ ├── compas_singular.algorithms.DecompositionRemap.key_index.html │ │ ├── compas_singular.algorithms.DecompositionRemap.lines.html │ │ ├── compas_singular.algorithms.DecompositionRemap.normal.html │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_edges.html │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces_wip.html │ │ ├── compas_singular.algorithms.DecompositionRemap.smooth_area.html │ │ ├── compas_singular.algorithms.DecompositionRemap.smooth_centroid.html │ │ ├── compas_singular.algorithms.DecompositionRemap.solve_triangular_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.split_edge.html │ │ ├── compas_singular.algorithms.DecompositionRemap.split_face.html │ │ ├── compas_singular.algorithms.DecompositionRemap.split_quads_with_poles.html │ │ ├── compas_singular.algorithms.DecompositionRemap.split_vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.store_pole_data.html │ │ ├── compas_singular.algorithms.DecompositionRemap.summary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_data.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_json.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_lines.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_obj.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_off.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_pickle.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_ply.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_points.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_polygons.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_polylines.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_quadmesh.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_stl.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_trimesh.html │ │ ├── compas_singular.algorithms.DecompositionRemap.to_vertices_and_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.transform.html │ │ ├── compas_singular.algorithms.DecompositionRemap.transformed.html │ │ ├── compas_singular.algorithms.DecompositionRemap.unify_cycles.html │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_edge_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_face_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_vertex_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_edge_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_face_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_vertex_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_area.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_centroid.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_coordinates.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_curvature.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_degree.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_faces.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_laplacian.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_max_degree.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_min_degree.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighborhood.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighborhood_centroid.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighbors.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_normal.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_attribute.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_attributes.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_on_boundaries.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_on_boundary.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_where.html │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_where_predicate.html │ │ ├── compas_singular.algorithms.Skeleton.__init__.html │ │ ├── compas_singular.algorithms.Skeleton.add_face.html │ │ ├── compas_singular.algorithms.Skeleton.add_vertex.html │ │ ├── compas_singular.algorithms.Skeleton.area.html │ │ ├── compas_singular.algorithms.Skeleton.boundaries.html │ │ ├── compas_singular.algorithms.Skeleton.boundary_kinks.html │ │ ├── compas_singular.algorithms.Skeleton.bounding_box.html │ │ ├── compas_singular.algorithms.Skeleton.bounding_box_xy.html │ │ ├── compas_singular.algorithms.Skeleton.branches.html │ │ ├── compas_singular.algorithms.Skeleton.centroid.html │ │ ├── compas_singular.algorithms.Skeleton.clear.html │ │ ├── compas_singular.algorithms.Skeleton.collapse_edge.html │ │ ├── compas_singular.algorithms.Skeleton.compas_singular_faces.html │ │ ├── compas_singular.algorithms.Skeleton.compas_singular_points.html │ │ ├── compas_singular.algorithms.Skeleton.connected_components.html │ │ ├── compas_singular.algorithms.Skeleton.copy.html │ │ ├── compas_singular.algorithms.Skeleton.cull_vertices.html │ │ ├── compas_singular.algorithms.Skeleton.cut.html │ │ ├── compas_singular.algorithms.Skeleton.delete_face.html │ │ ├── compas_singular.algorithms.Skeleton.delete_vertex.html │ │ ├── compas_singular.algorithms.Skeleton.dual.html │ │ ├── compas_singular.algorithms.Skeleton.edge_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.edge_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.edge_coordinates.html │ │ ├── compas_singular.algorithms.Skeleton.edge_direction.html │ │ ├── compas_singular.algorithms.Skeleton.edge_faces.html │ │ ├── compas_singular.algorithms.Skeleton.edge_length.html │ │ ├── compas_singular.algorithms.Skeleton.edge_midpoint.html │ │ ├── compas_singular.algorithms.Skeleton.edge_point.html │ │ ├── compas_singular.algorithms.Skeleton.edge_vector.html │ │ ├── compas_singular.algorithms.Skeleton.edges.html │ │ ├── compas_singular.algorithms.Skeleton.edges_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.edges_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.edges_on_boundaries.html │ │ ├── compas_singular.algorithms.Skeleton.edges_on_boundary.html │ │ ├── compas_singular.algorithms.Skeleton.edges_where.html │ │ ├── compas_singular.algorithms.Skeleton.edges_where_predicate.html │ │ ├── compas_singular.algorithms.Skeleton.euler.html │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency.html │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency_halfedge.html │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency_vertices.html │ │ ├── compas_singular.algorithms.Skeleton.face_area.html │ │ ├── compas_singular.algorithms.Skeleton.face_aspect_ratio.html │ │ ├── compas_singular.algorithms.Skeleton.face_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.face_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.face_center.html │ │ ├── compas_singular.algorithms.Skeleton.face_centroid.html │ │ ├── compas_singular.algorithms.Skeleton.face_coordinates.html │ │ ├── compas_singular.algorithms.Skeleton.face_corners.html │ │ ├── compas_singular.algorithms.Skeleton.face_curvature.html │ │ ├── compas_singular.algorithms.Skeleton.face_degree.html │ │ ├── compas_singular.algorithms.Skeleton.face_flatness.html │ │ ├── compas_singular.algorithms.Skeleton.face_halfedges.html │ │ ├── compas_singular.algorithms.Skeleton.face_max_degree.html │ │ ├── compas_singular.algorithms.Skeleton.face_min_degree.html │ │ ├── compas_singular.algorithms.Skeleton.face_neighborhood.html │ │ ├── compas_singular.algorithms.Skeleton.face_neighbors.html │ │ ├── compas_singular.algorithms.Skeleton.face_normal.html │ │ ├── compas_singular.algorithms.Skeleton.face_skewness.html │ │ ├── compas_singular.algorithms.Skeleton.face_vertex_ancestor.html │ │ ├── compas_singular.algorithms.Skeleton.face_vertex_descendant.html │ │ ├── compas_singular.algorithms.Skeleton.face_vertices.html │ │ ├── compas_singular.algorithms.Skeleton.faces.html │ │ ├── compas_singular.algorithms.Skeleton.faces_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.faces_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.faces_on_boundary.html │ │ ├── compas_singular.algorithms.Skeleton.faces_where.html │ │ ├── compas_singular.algorithms.Skeleton.faces_where_predicate.html │ │ ├── compas_singular.algorithms.Skeleton.flip_cycles.html │ │ ├── compas_singular.algorithms.Skeleton.from_data.html │ │ ├── compas_singular.algorithms.Skeleton.from_json.html │ │ ├── compas_singular.algorithms.Skeleton.from_lines.html │ │ ├── compas_singular.algorithms.Skeleton.from_mesh.html │ │ ├── compas_singular.algorithms.Skeleton.from_obj.html │ │ ├── compas_singular.algorithms.Skeleton.from_off.html │ │ ├── compas_singular.algorithms.Skeleton.from_pickle.html │ │ ├── compas_singular.algorithms.Skeleton.from_ply.html │ │ ├── compas_singular.algorithms.Skeleton.from_points.html │ │ ├── compas_singular.algorithms.Skeleton.from_polygons.html │ │ ├── compas_singular.algorithms.Skeleton.from_polyhedron.html │ │ ├── compas_singular.algorithms.Skeleton.from_polylines.html │ │ ├── compas_singular.algorithms.Skeleton.from_shape.html │ │ ├── compas_singular.algorithms.Skeleton.from_stl.html │ │ ├── compas_singular.algorithms.Skeleton.from_vertices_and_faces.html │ │ ├── compas_singular.algorithms.Skeleton.genus.html │ │ ├── compas_singular.algorithms.Skeleton.get_any_face.html │ │ ├── compas_singular.algorithms.Skeleton.get_any_face_vertex.html │ │ ├── compas_singular.algorithms.Skeleton.get_any_vertex.html │ │ ├── compas_singular.algorithms.Skeleton.get_any_vertices.html │ │ ├── compas_singular.algorithms.Skeleton.gkey_key.html │ │ ├── compas_singular.algorithms.Skeleton.halfedge_face.html │ │ ├── compas_singular.algorithms.Skeleton.has_edge.html │ │ ├── compas_singular.algorithms.Skeleton.has_face.html │ │ ├── compas_singular.algorithms.Skeleton.has_halfedge.html │ │ ├── compas_singular.algorithms.Skeleton.has_vertex.html │ │ ├── compas_singular.algorithms.Skeleton.html │ │ ├── compas_singular.algorithms.Skeleton.index_key.html │ │ ├── compas_singular.algorithms.Skeleton.insert_vertex.html │ │ ├── compas_singular.algorithms.Skeleton.is_boundary_vertex_kink.html │ │ ├── compas_singular.algorithms.Skeleton.is_connected.html │ │ ├── compas_singular.algorithms.Skeleton.is_edge_on_boundary.html │ │ ├── compas_singular.algorithms.Skeleton.is_empty.html │ │ ├── compas_singular.algorithms.Skeleton.is_face_on_boundary.html │ │ ├── compas_singular.algorithms.Skeleton.is_manifold.html │ │ ├── compas_singular.algorithms.Skeleton.is_orientable.html │ │ ├── compas_singular.algorithms.Skeleton.is_quadmesh.html │ │ ├── compas_singular.algorithms.Skeleton.is_regular.html │ │ ├── compas_singular.algorithms.Skeleton.is_trimesh.html │ │ ├── compas_singular.algorithms.Skeleton.is_valid.html │ │ ├── compas_singular.algorithms.Skeleton.is_vertex_connected.html │ │ ├── compas_singular.algorithms.Skeleton.is_vertex_on_boundary.html │ │ ├── compas_singular.algorithms.Skeleton.join.html │ │ ├── compas_singular.algorithms.Skeleton.key_gkey.html │ │ ├── compas_singular.algorithms.Skeleton.key_index.html │ │ ├── compas_singular.algorithms.Skeleton.lines.html │ │ ├── compas_singular.algorithms.Skeleton.normal.html │ │ ├── compas_singular.algorithms.Skeleton.number_of_edges.html │ │ ├── compas_singular.algorithms.Skeleton.number_of_faces.html │ │ ├── compas_singular.algorithms.Skeleton.number_of_vertices.html │ │ ├── compas_singular.algorithms.Skeleton.smooth_area.html │ │ ├── compas_singular.algorithms.Skeleton.smooth_centroid.html │ │ ├── compas_singular.algorithms.Skeleton.split_edge.html │ │ ├── compas_singular.algorithms.Skeleton.split_face.html │ │ ├── compas_singular.algorithms.Skeleton.summary.html │ │ ├── compas_singular.algorithms.Skeleton.to_data.html │ │ ├── compas_singular.algorithms.Skeleton.to_json.html │ │ ├── compas_singular.algorithms.Skeleton.to_lines.html │ │ ├── compas_singular.algorithms.Skeleton.to_obj.html │ │ ├── compas_singular.algorithms.Skeleton.to_off.html │ │ ├── compas_singular.algorithms.Skeleton.to_pickle.html │ │ ├── compas_singular.algorithms.Skeleton.to_ply.html │ │ ├── compas_singular.algorithms.Skeleton.to_points.html │ │ ├── compas_singular.algorithms.Skeleton.to_polygons.html │ │ ├── compas_singular.algorithms.Skeleton.to_polylines.html │ │ ├── compas_singular.algorithms.Skeleton.to_quadmesh.html │ │ ├── compas_singular.algorithms.Skeleton.to_stl.html │ │ ├── compas_singular.algorithms.Skeleton.to_trimesh.html │ │ ├── compas_singular.algorithms.Skeleton.to_vertices_and_faces.html │ │ ├── compas_singular.algorithms.Skeleton.transform.html │ │ ├── compas_singular.algorithms.Skeleton.transformed.html │ │ ├── compas_singular.algorithms.Skeleton.unify_cycles.html │ │ ├── compas_singular.algorithms.Skeleton.unset_edge_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.unset_face_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.unset_vertex_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.update_default_edge_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.update_default_face_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.update_default_vertex_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_area.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_centroid.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_coordinates.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_curvature.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_degree.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_faces.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_laplacian.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_max_degree.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_min_degree.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighborhood.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighborhood_centroid.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighbors.html │ │ ├── compas_singular.algorithms.Skeleton.vertex_normal.html │ │ ├── compas_singular.algorithms.Skeleton.vertices.html │ │ ├── compas_singular.algorithms.Skeleton.vertices_attribute.html │ │ ├── compas_singular.algorithms.Skeleton.vertices_attributes.html │ │ ├── compas_singular.algorithms.Skeleton.vertices_on_boundaries.html │ │ ├── compas_singular.algorithms.Skeleton.vertices_on_boundary.html │ │ ├── compas_singular.algorithms.Skeleton.vertices_where.html │ │ ├── compas_singular.algorithms.Skeleton.vertices_where_predicate.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.__init__.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.add_face.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.add_vertex.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.area.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.boundaries.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.boundary_kinks.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.bounding_box.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.bounding_box_xy.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_compas_singularity_to_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_compas_singularity_to_compas_singularity.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_boundary_kinks.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_collapsed_boundaries.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_flipped_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.centroid.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.clear.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.collapse_edge.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.compas_singular_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.compas_singular_points.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.connected_components.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.copy.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.corner_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.corner_vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.cull_vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.cut.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_mesh.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_polyline.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_polylines.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.delete_face.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.delete_vertex.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.dual.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_coordinates.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_direction.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_length.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_midpoint.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_point.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_vector.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_on_boundaries.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_on_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_where.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_where_predicate.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.euler.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency_halfedge.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency_vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_area.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_aspect_ratio.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_center.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_centroid.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_coordinates.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_corners.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_curvature.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_degree.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_flatness.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_halfedges.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_max_degree.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_min_degree.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_neighborhood.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_neighbors.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_normal.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_skewness.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertex_ancestor.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertex_descendant.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_on_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_where.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_where_predicate.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.flip_cycles.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_data.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_json.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_lines.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_mesh.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_obj.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_off.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_pickle.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_ply.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_points.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polygons.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polyhedron.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polylines.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_shape.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_skeleton.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_stl.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_vertices_and_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.genus.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_face.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_face_vertex.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_vertex.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.gkey_key.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.halfedge_face.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_edge.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_face.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_halfedge.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_vertex.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.index_key.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.insert_vertex.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_boundary_vertex_kink.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_connected.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_edge_on_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_empty.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_face_on_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_manifold.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_orientable.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_quadmesh.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_regular.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_trimesh.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_valid.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_vertex_connected.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_vertex_on_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.join.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.key_gkey.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.key_index.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.lines.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.normal.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_edges.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces_wip.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.smooth_area.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.smooth_centroid.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.solve_triangular_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_edge.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_face.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_quads_with_poles.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.store_pole_data.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.summary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_data.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_json.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_lines.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_obj.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_off.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_pickle.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_ply.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_points.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_polygons.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_polylines.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_quadmesh.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_stl.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_trimesh.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_vertices_and_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.transform.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.transformed.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unify_cycles.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_edge_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_face_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_vertex_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_edge_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_face_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_vertex_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_area.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_centroid.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_coordinates.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_curvature.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_degree.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_faces.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_laplacian.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_max_degree.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_min_degree.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighborhood.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighborhood_centroid.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighbors.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_normal.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_attribute.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_attributes.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_on_boundaries.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_on_boundary.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_where.html │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_where_predicate.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.__init__.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.get_results.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_0.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_1.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_2.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_4.html │ │ ├── compas_singular.algorithms.TwoColourableProjection.strip_deletions_yielding_two_colourability.html │ │ ├── compas_singular.algorithms.boundary_triangulation.html │ │ ├── compas_singular.algorithms.surface_discrete_mapping.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.__init__.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.add_face.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.add_vertex.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.area.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.boundaries.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.boundary_kinks.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.bounding_box.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.bounding_box_xy.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.centroid.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.clear.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.coarse_edge_dense_edges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collapse_edge.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_polyedge.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_polyedges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_strip.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_strips.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularities.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyedge_decomposition.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyedges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyline_decomposition.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polylines.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.connected_components.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.copy.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.cull_vertices.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.cut.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_face.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_face_in_strips.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_vertex.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.densification.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.dual.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_coordinates.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_direction.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_length.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_midpoint.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_point.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_strip.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_vector.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundaries.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundary.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_where.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_where_predicate.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.euler.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_halfedge.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_vertices.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_area.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_aspect_ratio.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_center.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_centroid.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_coordinates.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_corners.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_curvature.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_degree.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_flatness.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_halfedges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_max_degree.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_min_degree.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_neighborhood.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_neighbors.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_normal.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_opposite_edge.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_skewness.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_strips.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertex_ancestor.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertex_descendant.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertices.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_on_boundary.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_where.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_where_predicate.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.flip_cycles.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_data.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_json.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_lines.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_obj.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_off.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_pickle.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_ply.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_points.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polygons.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polyhedron.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polylines.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_quad_mesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_shape.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_stl.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_face_poles.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_poles.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.genus.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_face.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_face_vertex.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_vertex.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_vertices.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_polygonal_mesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_quad_mesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_strip_densities.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_strip_density.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.gkey_key.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.halfedge_face.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_edge.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_face.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_halfedge.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_strip_poles.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_vertex.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.index_key.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.insert_vertex.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_boundary_vertex_kink.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_connected.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_edge_on_boundary.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_empty.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_face_on_boundary.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_face_pseudo_quad.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_manifold.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_orientable.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_pole.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_polyedge_closed.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_quadmesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_regular.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_strip_closed.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_trimesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_valid.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_compas_singular.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_connected.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_full_pole.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_on_boundary.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_partial_pole.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_pole.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.join.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.key_gkey.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.key_index.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.normal.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_edges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_strips.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_vertices.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.poles.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polyedge_graph.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polyedges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polylines.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_mesh_density_face_target.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_polygonal_mesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_quad_mesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_func.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_target.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_func.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_target.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.smooth_area.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.smooth_centroid.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.split_edge.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.split_face.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_edge_midpoint_polyline.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_edges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_face_centroid_polyline.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_graph.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_side_polyedges.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_side_polylines.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strips.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.substitute_vertex_in_strips.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.summary.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_data.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_json.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_lines.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_obj.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_off.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_pickle.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_ply.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_points.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_polygons.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_polylines.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_quadmesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_stl.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_trimesh.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_vertices_and_faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.transform.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.transformed.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unify_cycles.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_edge_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_face_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_vertex_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_edge_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_face_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_vertex_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_area.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_centroid.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_coordinates.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_curvature.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_degree.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_index.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_laplacian.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_max_degree.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_min_degree.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood_centroid.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighbors.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_normal.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_opposite_vertex.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_pole_faces.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_attribute.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_attributes.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundaries.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundary.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_where.html │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_where_predicate.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.__init__.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.add_face.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.add_vertex.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.area.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.boundaries.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.boundary_kinks.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.bounding_box.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.bounding_box_xy.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.centroid.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.clear.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.coarse_edge_dense_edges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collapse_edge.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_polyedge.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_polyedges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_strip.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_strips.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularities.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyedge_decomposition.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyedges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyline_decomposition.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polylines.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.connected_components.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.copy.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.cull_vertices.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.cut.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_face.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_face_in_strips.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_vertex.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.densification.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.dual.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_coordinates.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_direction.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_faces.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_length.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_midpoint.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_point.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_strip.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_vector.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_on_boundaries.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_on_boundary.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_where.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_where_predicate.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.euler.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency_halfedge.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency_vertices.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_area.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_aspect_ratio.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_center.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_centroid.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_coordinates.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_corners.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_curvature.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_degree.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_flatness.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_halfedges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_max_degree.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_min_degree.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_neighborhood.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_neighbors.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_normal.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_opposite_edge.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_skewness.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_strips.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertex_ancestor.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertex_descendant.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertices.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_on_boundary.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_where.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_where_predicate.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.flip_cycles.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_data.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_json.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_lines.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_obj.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_off.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_pickle.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_ply.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_points.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polygons.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polyhedron.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polylines.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_quad_mesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_shape.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_stl.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_vertices_and_faces.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.genus.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_face.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_face_vertex.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_vertex.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_vertices.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_polygonal_mesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_quad_mesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_strip_densities.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_strip_density.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.gkey_key.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.halfedge_face.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_edge.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_face.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_halfedge.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_vertex.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.index_key.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.insert_vertex.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_boundary_vertex_kink.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_connected.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_edge_on_boundary.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_empty.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_face_on_boundary.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_manifold.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_orientable.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_polyedge_closed.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_quadmesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_regular.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_strip_closed.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_trimesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_valid.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_compas_singular.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_connected.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_on_boundary.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.join.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.key_gkey.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.key_index.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.normal.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_edges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_faces.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_strips.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_vertices.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polyedge_graph.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polyedges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polylines.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_mesh_density_face_target.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_polygonal_mesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_quad_mesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density_func.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density_target.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density_func.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density_target.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.smooth_area.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.smooth_centroid.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.split_edge.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.split_face.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_edge_midpoint_polyline.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_edges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_face_centroid_polyline.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_faces.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_graph.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_side_polyedges.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_side_polylines.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strips.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.substitute_vertex_in_strips.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.summary.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_data.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_json.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_lines.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_obj.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_off.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_pickle.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_ply.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_points.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_polygons.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_polylines.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_quadmesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_stl.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_trimesh.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_vertices_and_faces.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.transform.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.transformed.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unify_cycles.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_edge_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_face_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_vertex_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_edge_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_face_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_vertex_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_area.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_centroid.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_coordinates.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_curvature.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_degree.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_faces.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_index.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_laplacian.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_max_degree.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_min_degree.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighborhood.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighborhood_centroid.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighbors.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_normal.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_opposite_vertex.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_attribute.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_attributes.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_on_boundaries.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_on_boundary.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_where.html │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_where_predicate.html │ │ ├── compas_singular.datastructures.Mesh.__init__.html │ │ ├── compas_singular.datastructures.Mesh.add_face.html │ │ ├── compas_singular.datastructures.Mesh.add_vertex.html │ │ ├── compas_singular.datastructures.Mesh.area.html │ │ ├── compas_singular.datastructures.Mesh.boundaries.html │ │ ├── compas_singular.datastructures.Mesh.boundary_kinks.html │ │ ├── compas_singular.datastructures.Mesh.bounding_box.html │ │ ├── compas_singular.datastructures.Mesh.bounding_box_xy.html │ │ ├── compas_singular.datastructures.Mesh.centroid.html │ │ ├── compas_singular.datastructures.Mesh.clear.html │ │ ├── compas_singular.datastructures.Mesh.collapse_edge.html │ │ ├── compas_singular.datastructures.Mesh.connected_components.html │ │ ├── compas_singular.datastructures.Mesh.copy.html │ │ ├── compas_singular.datastructures.Mesh.cull_vertices.html │ │ ├── compas_singular.datastructures.Mesh.cut.html │ │ ├── compas_singular.datastructures.Mesh.delete_face.html │ │ ├── compas_singular.datastructures.Mesh.delete_vertex.html │ │ ├── compas_singular.datastructures.Mesh.dual.html │ │ ├── compas_singular.datastructures.Mesh.edge_attribute.html │ │ ├── compas_singular.datastructures.Mesh.edge_attributes.html │ │ ├── compas_singular.datastructures.Mesh.edge_coordinates.html │ │ ├── compas_singular.datastructures.Mesh.edge_direction.html │ │ ├── compas_singular.datastructures.Mesh.edge_faces.html │ │ ├── compas_singular.datastructures.Mesh.edge_length.html │ │ ├── compas_singular.datastructures.Mesh.edge_midpoint.html │ │ ├── compas_singular.datastructures.Mesh.edge_point.html │ │ ├── compas_singular.datastructures.Mesh.edge_vector.html │ │ ├── compas_singular.datastructures.Mesh.edges.html │ │ ├── compas_singular.datastructures.Mesh.edges_attribute.html │ │ ├── compas_singular.datastructures.Mesh.edges_attributes.html │ │ ├── compas_singular.datastructures.Mesh.edges_on_boundaries.html │ │ ├── compas_singular.datastructures.Mesh.edges_on_boundary.html │ │ ├── compas_singular.datastructures.Mesh.edges_where.html │ │ ├── compas_singular.datastructures.Mesh.edges_where_predicate.html │ │ ├── compas_singular.datastructures.Mesh.euler.html │ │ ├── compas_singular.datastructures.Mesh.face_adjacency.html │ │ ├── compas_singular.datastructures.Mesh.face_adjacency_halfedge.html │ │ ├── compas_singular.datastructures.Mesh.face_adjacency_vertices.html │ │ ├── compas_singular.datastructures.Mesh.face_area.html │ │ ├── compas_singular.datastructures.Mesh.face_aspect_ratio.html │ │ ├── compas_singular.datastructures.Mesh.face_attribute.html │ │ ├── compas_singular.datastructures.Mesh.face_attributes.html │ │ ├── compas_singular.datastructures.Mesh.face_center.html │ │ ├── compas_singular.datastructures.Mesh.face_centroid.html │ │ ├── compas_singular.datastructures.Mesh.face_coordinates.html │ │ ├── compas_singular.datastructures.Mesh.face_corners.html │ │ ├── compas_singular.datastructures.Mesh.face_curvature.html │ │ ├── compas_singular.datastructures.Mesh.face_degree.html │ │ ├── compas_singular.datastructures.Mesh.face_flatness.html │ │ ├── compas_singular.datastructures.Mesh.face_halfedges.html │ │ ├── compas_singular.datastructures.Mesh.face_max_degree.html │ │ ├── compas_singular.datastructures.Mesh.face_min_degree.html │ │ ├── compas_singular.datastructures.Mesh.face_neighborhood.html │ │ ├── compas_singular.datastructures.Mesh.face_neighbors.html │ │ ├── compas_singular.datastructures.Mesh.face_normal.html │ │ ├── compas_singular.datastructures.Mesh.face_skewness.html │ │ ├── compas_singular.datastructures.Mesh.face_vertex_ancestor.html │ │ ├── compas_singular.datastructures.Mesh.face_vertex_descendant.html │ │ ├── compas_singular.datastructures.Mesh.face_vertices.html │ │ ├── compas_singular.datastructures.Mesh.faces.html │ │ ├── compas_singular.datastructures.Mesh.faces_attribute.html │ │ ├── compas_singular.datastructures.Mesh.faces_attributes.html │ │ ├── compas_singular.datastructures.Mesh.faces_on_boundary.html │ │ ├── compas_singular.datastructures.Mesh.faces_where.html │ │ ├── compas_singular.datastructures.Mesh.faces_where_predicate.html │ │ ├── compas_singular.datastructures.Mesh.flip_cycles.html │ │ ├── compas_singular.datastructures.Mesh.from_data.html │ │ ├── compas_singular.datastructures.Mesh.from_json.html │ │ ├── compas_singular.datastructures.Mesh.from_lines.html │ │ ├── compas_singular.datastructures.Mesh.from_obj.html │ │ ├── compas_singular.datastructures.Mesh.from_off.html │ │ ├── compas_singular.datastructures.Mesh.from_pickle.html │ │ ├── compas_singular.datastructures.Mesh.from_ply.html │ │ ├── compas_singular.datastructures.Mesh.from_points.html │ │ ├── compas_singular.datastructures.Mesh.from_polygons.html │ │ ├── compas_singular.datastructures.Mesh.from_polyhedron.html │ │ ├── compas_singular.datastructures.Mesh.from_polylines.html │ │ ├── compas_singular.datastructures.Mesh.from_shape.html │ │ ├── compas_singular.datastructures.Mesh.from_stl.html │ │ ├── compas_singular.datastructures.Mesh.from_vertices_and_faces.html │ │ ├── compas_singular.datastructures.Mesh.genus.html │ │ ├── compas_singular.datastructures.Mesh.get_any_face.html │ │ ├── compas_singular.datastructures.Mesh.get_any_face_vertex.html │ │ ├── compas_singular.datastructures.Mesh.get_any_vertex.html │ │ ├── compas_singular.datastructures.Mesh.get_any_vertices.html │ │ ├── compas_singular.datastructures.Mesh.gkey_key.html │ │ ├── compas_singular.datastructures.Mesh.halfedge_face.html │ │ ├── compas_singular.datastructures.Mesh.has_edge.html │ │ ├── compas_singular.datastructures.Mesh.has_face.html │ │ ├── compas_singular.datastructures.Mesh.has_halfedge.html │ │ ├── compas_singular.datastructures.Mesh.has_vertex.html │ │ ├── compas_singular.datastructures.Mesh.html │ │ ├── compas_singular.datastructures.Mesh.index_key.html │ │ ├── compas_singular.datastructures.Mesh.insert_vertex.html │ │ ├── compas_singular.datastructures.Mesh.is_boundary_vertex_kink.html │ │ ├── compas_singular.datastructures.Mesh.is_connected.html │ │ ├── compas_singular.datastructures.Mesh.is_edge_on_boundary.html │ │ ├── compas_singular.datastructures.Mesh.is_empty.html │ │ ├── compas_singular.datastructures.Mesh.is_face_on_boundary.html │ │ ├── compas_singular.datastructures.Mesh.is_manifold.html │ │ ├── compas_singular.datastructures.Mesh.is_orientable.html │ │ ├── compas_singular.datastructures.Mesh.is_quadmesh.html │ │ ├── compas_singular.datastructures.Mesh.is_regular.html │ │ ├── compas_singular.datastructures.Mesh.is_trimesh.html │ │ ├── compas_singular.datastructures.Mesh.is_valid.html │ │ ├── compas_singular.datastructures.Mesh.is_vertex_connected.html │ │ ├── compas_singular.datastructures.Mesh.is_vertex_on_boundary.html │ │ ├── compas_singular.datastructures.Mesh.join.html │ │ ├── compas_singular.datastructures.Mesh.key_gkey.html │ │ ├── compas_singular.datastructures.Mesh.key_index.html │ │ ├── compas_singular.datastructures.Mesh.normal.html │ │ ├── compas_singular.datastructures.Mesh.number_of_edges.html │ │ ├── compas_singular.datastructures.Mesh.number_of_faces.html │ │ ├── compas_singular.datastructures.Mesh.number_of_vertices.html │ │ ├── compas_singular.datastructures.Mesh.smooth_area.html │ │ ├── compas_singular.datastructures.Mesh.smooth_centroid.html │ │ ├── compas_singular.datastructures.Mesh.split_edge.html │ │ ├── compas_singular.datastructures.Mesh.split_face.html │ │ ├── compas_singular.datastructures.Mesh.summary.html │ │ ├── compas_singular.datastructures.Mesh.to_data.html │ │ ├── compas_singular.datastructures.Mesh.to_json.html │ │ ├── compas_singular.datastructures.Mesh.to_lines.html │ │ ├── compas_singular.datastructures.Mesh.to_obj.html │ │ ├── compas_singular.datastructures.Mesh.to_off.html │ │ ├── compas_singular.datastructures.Mesh.to_pickle.html │ │ ├── compas_singular.datastructures.Mesh.to_ply.html │ │ ├── compas_singular.datastructures.Mesh.to_points.html │ │ ├── compas_singular.datastructures.Mesh.to_polygons.html │ │ ├── compas_singular.datastructures.Mesh.to_polylines.html │ │ ├── compas_singular.datastructures.Mesh.to_quadmesh.html │ │ ├── compas_singular.datastructures.Mesh.to_stl.html │ │ ├── compas_singular.datastructures.Mesh.to_trimesh.html │ │ ├── compas_singular.datastructures.Mesh.to_vertices_and_faces.html │ │ ├── compas_singular.datastructures.Mesh.transform.html │ │ ├── compas_singular.datastructures.Mesh.transformed.html │ │ ├── compas_singular.datastructures.Mesh.unify_cycles.html │ │ ├── compas_singular.datastructures.Mesh.unset_edge_attribute.html │ │ ├── compas_singular.datastructures.Mesh.unset_face_attribute.html │ │ ├── compas_singular.datastructures.Mesh.unset_vertex_attribute.html │ │ ├── compas_singular.datastructures.Mesh.update_default_edge_attributes.html │ │ ├── compas_singular.datastructures.Mesh.update_default_face_attributes.html │ │ ├── compas_singular.datastructures.Mesh.update_default_vertex_attributes.html │ │ ├── compas_singular.datastructures.Mesh.vertex_area.html │ │ ├── compas_singular.datastructures.Mesh.vertex_attribute.html │ │ ├── compas_singular.datastructures.Mesh.vertex_attributes.html │ │ ├── compas_singular.datastructures.Mesh.vertex_centroid.html │ │ ├── compas_singular.datastructures.Mesh.vertex_coordinates.html │ │ ├── compas_singular.datastructures.Mesh.vertex_curvature.html │ │ ├── compas_singular.datastructures.Mesh.vertex_degree.html │ │ ├── compas_singular.datastructures.Mesh.vertex_faces.html │ │ ├── compas_singular.datastructures.Mesh.vertex_laplacian.html │ │ ├── compas_singular.datastructures.Mesh.vertex_max_degree.html │ │ ├── compas_singular.datastructures.Mesh.vertex_min_degree.html │ │ ├── compas_singular.datastructures.Mesh.vertex_neighborhood.html │ │ ├── compas_singular.datastructures.Mesh.vertex_neighborhood_centroid.html │ │ ├── compas_singular.datastructures.Mesh.vertex_neighbors.html │ │ ├── compas_singular.datastructures.Mesh.vertex_normal.html │ │ ├── compas_singular.datastructures.Mesh.vertices.html │ │ ├── compas_singular.datastructures.Mesh.vertices_attribute.html │ │ ├── compas_singular.datastructures.Mesh.vertices_attributes.html │ │ ├── compas_singular.datastructures.Mesh.vertices_on_boundaries.html │ │ ├── compas_singular.datastructures.Mesh.vertices_on_boundary.html │ │ ├── compas_singular.datastructures.Mesh.vertices_where.html │ │ ├── compas_singular.datastructures.Mesh.vertices_where_predicate.html │ │ ├── compas_singular.datastructures.Network.__init__.html │ │ ├── compas_singular.datastructures.Network.add_edge.html │ │ ├── compas_singular.datastructures.Network.add_node.html │ │ ├── compas_singular.datastructures.Network.clear.html │ │ ├── compas_singular.datastructures.Network.connected_edges.html │ │ ├── compas_singular.datastructures.Network.copy.html │ │ ├── compas_singular.datastructures.Network.degree.html │ │ ├── compas_singular.datastructures.Network.degree_in.html │ │ ├── compas_singular.datastructures.Network.degree_out.html │ │ ├── compas_singular.datastructures.Network.delete_edge.html │ │ ├── compas_singular.datastructures.Network.delete_node.html │ │ ├── compas_singular.datastructures.Network.edge_attribute.html │ │ ├── compas_singular.datastructures.Network.edge_attributes.html │ │ ├── compas_singular.datastructures.Network.edge_coordinates.html │ │ ├── compas_singular.datastructures.Network.edge_direction.html │ │ ├── compas_singular.datastructures.Network.edge_length.html │ │ ├── compas_singular.datastructures.Network.edge_midpoint.html │ │ ├── compas_singular.datastructures.Network.edge_point.html │ │ ├── compas_singular.datastructures.Network.edge_vector.html │ │ ├── compas_singular.datastructures.Network.edges.html │ │ ├── compas_singular.datastructures.Network.edges_attribute.html │ │ ├── compas_singular.datastructures.Network.edges_attributes.html │ │ ├── compas_singular.datastructures.Network.edges_where.html │ │ ├── compas_singular.datastructures.Network.edges_where_predicate.html │ │ ├── compas_singular.datastructures.Network.from_data.html │ │ ├── compas_singular.datastructures.Network.from_edges.html │ │ ├── compas_singular.datastructures.Network.from_json.html │ │ ├── compas_singular.datastructures.Network.from_lines.html │ │ ├── compas_singular.datastructures.Network.from_networkx.html │ │ ├── compas_singular.datastructures.Network.from_nodes_and_edges.html │ │ ├── compas_singular.datastructures.Network.from_obj.html │ │ ├── compas_singular.datastructures.Network.get_any_edge.html │ │ ├── compas_singular.datastructures.Network.get_any_edges.html │ │ ├── compas_singular.datastructures.Network.get_any_node.html │ │ ├── compas_singular.datastructures.Network.get_any_nodes.html │ │ ├── compas_singular.datastructures.Network.gkey_key.html │ │ ├── compas_singular.datastructures.Network.has_edge.html │ │ ├── compas_singular.datastructures.Network.has_node.html │ │ ├── compas_singular.datastructures.Network.html │ │ ├── compas_singular.datastructures.Network.index_key.html │ │ ├── compas_singular.datastructures.Network.index_uv.html │ │ ├── compas_singular.datastructures.Network.is_leaf.html │ │ ├── compas_singular.datastructures.Network.is_node_connected.html │ │ ├── compas_singular.datastructures.Network.key_gkey.html │ │ ├── compas_singular.datastructures.Network.key_index.html │ │ ├── compas_singular.datastructures.Network.leaves.html │ │ ├── compas_singular.datastructures.Network.neighborhood.html │ │ ├── compas_singular.datastructures.Network.neighbors.html │ │ ├── compas_singular.datastructures.Network.neighbors_in.html │ │ ├── compas_singular.datastructures.Network.neighbors_out.html │ │ ├── compas_singular.datastructures.Network.node_attribute.html │ │ ├── compas_singular.datastructures.Network.node_attributes.html │ │ ├── compas_singular.datastructures.Network.node_coordinates.html │ │ ├── compas_singular.datastructures.Network.node_laplacian.html │ │ ├── compas_singular.datastructures.Network.node_neighborhood_centroid.html │ │ ├── compas_singular.datastructures.Network.nodes.html │ │ ├── compas_singular.datastructures.Network.nodes_attribute.html │ │ ├── compas_singular.datastructures.Network.nodes_attributes.html │ │ ├── compas_singular.datastructures.Network.nodes_where.html │ │ ├── compas_singular.datastructures.Network.nodes_where_predicate.html │ │ ├── compas_singular.datastructures.Network.number_of_edges.html │ │ ├── compas_singular.datastructures.Network.number_of_nodes.html │ │ ├── compas_singular.datastructures.Network.split_edge.html │ │ ├── compas_singular.datastructures.Network.summary.html │ │ ├── compas_singular.datastructures.Network.to_data.html │ │ ├── compas_singular.datastructures.Network.to_json.html │ │ ├── compas_singular.datastructures.Network.to_lines.html │ │ ├── compas_singular.datastructures.Network.to_networkx.html │ │ ├── compas_singular.datastructures.Network.to_nodes_and_edges.html │ │ ├── compas_singular.datastructures.Network.to_obj.html │ │ ├── compas_singular.datastructures.Network.to_points.html │ │ ├── compas_singular.datastructures.Network.unset_edge_attribute.html │ │ ├── compas_singular.datastructures.Network.unset_node_attribute.html │ │ ├── compas_singular.datastructures.Network.update_default_edge_attributes.html │ │ ├── compas_singular.datastructures.Network.update_default_node_attributes.html │ │ ├── compas_singular.datastructures.Network.uv_index.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.__init__.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.add_face.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.add_vertex.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.area.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.boundaries.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.boundary_kinks.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.bounding_box.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.bounding_box_xy.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.centroid.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.clear.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collapse_edge.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_polyedge.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_polyedges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_strip.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_strips.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularities.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyedge_decomposition.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyedges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyline_decomposition.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polylines.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.connected_components.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.copy.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.cull_vertices.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.cut.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_face.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_face_in_strips.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_vertex.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.dual.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_coordinates.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_direction.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_length.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_midpoint.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_point.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_strip.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_vector.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_on_boundaries.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_on_boundary.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_where.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_where_predicate.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.euler.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency_halfedge.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency_vertices.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_area.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_aspect_ratio.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_center.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_centroid.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_coordinates.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_corners.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_curvature.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_degree.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_flatness.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_halfedges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_max_degree.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_min_degree.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_neighborhood.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_neighbors.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_normal.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_opposite_edge.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_skewness.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_strips.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertex_ancestor.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertex_descendant.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertices.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_on_boundary.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_where.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_where_predicate.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.flip_cycles.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_data.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_json.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_lines.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_obj.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_off.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_pickle.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_ply.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_points.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polygons.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polyhedron.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polylines.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_shape.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_stl.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_face_poles.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_poles.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.genus.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_face.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_face_vertex.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_vertex.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_vertices.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.gkey_key.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.halfedge_face.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_edge.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_face.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_halfedge.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_strip_poles.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_vertex.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.index_key.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.insert_vertex.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_boundary_vertex_kink.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_connected.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_edge_on_boundary.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_empty.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_face_on_boundary.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_face_pseudo_quad.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_manifold.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_orientable.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_pole.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_polyedge_closed.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_quadmesh.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_regular.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_strip_closed.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_trimesh.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_valid.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_compas_singular.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_connected.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_full_pole.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_on_boundary.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_partial_pole.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_pole.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.join.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.key_gkey.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.key_index.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.normal.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_edges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_strips.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_vertices.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.poles.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polyedge_graph.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polyedges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polylines.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.smooth_area.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.smooth_centroid.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.split_edge.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.split_face.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_edge_midpoint_polyline.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_edges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_face_centroid_polyline.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_graph.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_side_polyedges.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_side_polylines.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strips.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.substitute_vertex_in_strips.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.summary.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_data.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_json.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_lines.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_obj.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_off.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_pickle.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_ply.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_points.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_polygons.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_polylines.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_quadmesh.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_stl.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_trimesh.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_vertices_and_faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.transform.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.transformed.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unify_cycles.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_edge_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_face_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_vertex_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_edge_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_face_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_vertex_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_area.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_centroid.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_coordinates.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_curvature.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_degree.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_index.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_laplacian.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_max_degree.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_min_degree.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighborhood.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighborhood_centroid.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighbors.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_normal.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_opposite_vertex.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_pole_faces.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_attribute.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_attributes.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_on_boundaries.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_on_boundary.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_where.html │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_where_predicate.html │ │ ├── compas_singular.datastructures.QuadMesh.__init__.html │ │ ├── compas_singular.datastructures.QuadMesh.add_face.html │ │ ├── compas_singular.datastructures.QuadMesh.add_vertex.html │ │ ├── compas_singular.datastructures.QuadMesh.area.html │ │ ├── compas_singular.datastructures.QuadMesh.boundaries.html │ │ ├── compas_singular.datastructures.QuadMesh.boundary_kinks.html │ │ ├── compas_singular.datastructures.QuadMesh.bounding_box.html │ │ ├── compas_singular.datastructures.QuadMesh.bounding_box_xy.html │ │ ├── compas_singular.datastructures.QuadMesh.centroid.html │ │ ├── compas_singular.datastructures.QuadMesh.clear.html │ │ ├── compas_singular.datastructures.QuadMesh.collapse_edge.html │ │ ├── compas_singular.datastructures.QuadMesh.collect_polyedge.html │ │ ├── compas_singular.datastructures.QuadMesh.collect_polyedges.html │ │ ├── compas_singular.datastructures.QuadMesh.collect_strip.html │ │ ├── compas_singular.datastructures.QuadMesh.collect_strips.html │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularities.html │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyedge_decomposition.html │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyedges.html │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyline_decomposition.html │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polylines.html │ │ ├── compas_singular.datastructures.QuadMesh.connected_components.html │ │ ├── compas_singular.datastructures.QuadMesh.copy.html │ │ ├── compas_singular.datastructures.QuadMesh.cull_vertices.html │ │ ├── compas_singular.datastructures.QuadMesh.cut.html │ │ ├── compas_singular.datastructures.QuadMesh.delete_face.html │ │ ├── compas_singular.datastructures.QuadMesh.delete_face_in_strips.html │ │ ├── compas_singular.datastructures.QuadMesh.delete_vertex.html │ │ ├── compas_singular.datastructures.QuadMesh.dual.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_coordinates.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_direction.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_faces.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_length.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_midpoint.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_point.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_strip.html │ │ ├── compas_singular.datastructures.QuadMesh.edge_vector.html │ │ ├── compas_singular.datastructures.QuadMesh.edges.html │ │ ├── compas_singular.datastructures.QuadMesh.edges_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.edges_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.edges_on_boundaries.html │ │ ├── compas_singular.datastructures.QuadMesh.edges_on_boundary.html │ │ ├── compas_singular.datastructures.QuadMesh.edges_where.html │ │ ├── compas_singular.datastructures.QuadMesh.edges_where_predicate.html │ │ ├── compas_singular.datastructures.QuadMesh.euler.html │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency.html │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency_halfedge.html │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency_vertices.html │ │ ├── compas_singular.datastructures.QuadMesh.face_area.html │ │ ├── compas_singular.datastructures.QuadMesh.face_aspect_ratio.html │ │ ├── compas_singular.datastructures.QuadMesh.face_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.face_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.face_center.html │ │ ├── compas_singular.datastructures.QuadMesh.face_centroid.html │ │ ├── compas_singular.datastructures.QuadMesh.face_coordinates.html │ │ ├── compas_singular.datastructures.QuadMesh.face_corners.html │ │ ├── compas_singular.datastructures.QuadMesh.face_curvature.html │ │ ├── compas_singular.datastructures.QuadMesh.face_degree.html │ │ ├── compas_singular.datastructures.QuadMesh.face_flatness.html │ │ ├── compas_singular.datastructures.QuadMesh.face_halfedges.html │ │ ├── compas_singular.datastructures.QuadMesh.face_max_degree.html │ │ ├── compas_singular.datastructures.QuadMesh.face_min_degree.html │ │ ├── compas_singular.datastructures.QuadMesh.face_neighborhood.html │ │ ├── compas_singular.datastructures.QuadMesh.face_neighbors.html │ │ ├── compas_singular.datastructures.QuadMesh.face_normal.html │ │ ├── compas_singular.datastructures.QuadMesh.face_opposite_edge.html │ │ ├── compas_singular.datastructures.QuadMesh.face_skewness.html │ │ ├── compas_singular.datastructures.QuadMesh.face_strips.html │ │ ├── compas_singular.datastructures.QuadMesh.face_vertex_ancestor.html │ │ ├── compas_singular.datastructures.QuadMesh.face_vertex_descendant.html │ │ ├── compas_singular.datastructures.QuadMesh.face_vertices.html │ │ ├── compas_singular.datastructures.QuadMesh.faces.html │ │ ├── compas_singular.datastructures.QuadMesh.faces_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.faces_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.faces_on_boundary.html │ │ ├── compas_singular.datastructures.QuadMesh.faces_where.html │ │ ├── compas_singular.datastructures.QuadMesh.faces_where_predicate.html │ │ ├── compas_singular.datastructures.QuadMesh.flip_cycles.html │ │ ├── compas_singular.datastructures.QuadMesh.from_data.html │ │ ├── compas_singular.datastructures.QuadMesh.from_json.html │ │ ├── compas_singular.datastructures.QuadMesh.from_lines.html │ │ ├── compas_singular.datastructures.QuadMesh.from_obj.html │ │ ├── compas_singular.datastructures.QuadMesh.from_off.html │ │ ├── compas_singular.datastructures.QuadMesh.from_pickle.html │ │ ├── compas_singular.datastructures.QuadMesh.from_ply.html │ │ ├── compas_singular.datastructures.QuadMesh.from_points.html │ │ ├── compas_singular.datastructures.QuadMesh.from_polygons.html │ │ ├── compas_singular.datastructures.QuadMesh.from_polyhedron.html │ │ ├── compas_singular.datastructures.QuadMesh.from_polylines.html │ │ ├── compas_singular.datastructures.QuadMesh.from_shape.html │ │ ├── compas_singular.datastructures.QuadMesh.from_stl.html │ │ ├── compas_singular.datastructures.QuadMesh.from_vertices_and_faces.html │ │ ├── compas_singular.datastructures.QuadMesh.genus.html │ │ ├── compas_singular.datastructures.QuadMesh.get_any_face.html │ │ ├── compas_singular.datastructures.QuadMesh.get_any_face_vertex.html │ │ ├── compas_singular.datastructures.QuadMesh.get_any_vertex.html │ │ ├── compas_singular.datastructures.QuadMesh.get_any_vertices.html │ │ ├── compas_singular.datastructures.QuadMesh.gkey_key.html │ │ ├── compas_singular.datastructures.QuadMesh.halfedge_face.html │ │ ├── compas_singular.datastructures.QuadMesh.has_edge.html │ │ ├── compas_singular.datastructures.QuadMesh.has_face.html │ │ ├── compas_singular.datastructures.QuadMesh.has_halfedge.html │ │ ├── compas_singular.datastructures.QuadMesh.has_vertex.html │ │ ├── compas_singular.datastructures.QuadMesh.html │ │ ├── compas_singular.datastructures.QuadMesh.index_key.html │ │ ├── compas_singular.datastructures.QuadMesh.insert_vertex.html │ │ ├── compas_singular.datastructures.QuadMesh.is_boundary_vertex_kink.html │ │ ├── compas_singular.datastructures.QuadMesh.is_connected.html │ │ ├── compas_singular.datastructures.QuadMesh.is_edge_on_boundary.html │ │ ├── compas_singular.datastructures.QuadMesh.is_empty.html │ │ ├── compas_singular.datastructures.QuadMesh.is_face_on_boundary.html │ │ ├── compas_singular.datastructures.QuadMesh.is_manifold.html │ │ ├── compas_singular.datastructures.QuadMesh.is_orientable.html │ │ ├── compas_singular.datastructures.QuadMesh.is_polyedge_closed.html │ │ ├── compas_singular.datastructures.QuadMesh.is_quadmesh.html │ │ ├── compas_singular.datastructures.QuadMesh.is_regular.html │ │ ├── compas_singular.datastructures.QuadMesh.is_strip_closed.html │ │ ├── compas_singular.datastructures.QuadMesh.is_trimesh.html │ │ ├── compas_singular.datastructures.QuadMesh.is_valid.html │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_compas_singular.html │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_connected.html │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_on_boundary.html │ │ ├── compas_singular.datastructures.QuadMesh.join.html │ │ ├── compas_singular.datastructures.QuadMesh.key_gkey.html │ │ ├── compas_singular.datastructures.QuadMesh.key_index.html │ │ ├── compas_singular.datastructures.QuadMesh.normal.html │ │ ├── compas_singular.datastructures.QuadMesh.number_of_edges.html │ │ ├── compas_singular.datastructures.QuadMesh.number_of_faces.html │ │ ├── compas_singular.datastructures.QuadMesh.number_of_strips.html │ │ ├── compas_singular.datastructures.QuadMesh.number_of_vertices.html │ │ ├── compas_singular.datastructures.QuadMesh.polyedge_graph.html │ │ ├── compas_singular.datastructures.QuadMesh.polyedges.html │ │ ├── compas_singular.datastructures.QuadMesh.polylines.html │ │ ├── compas_singular.datastructures.QuadMesh.smooth_area.html │ │ ├── compas_singular.datastructures.QuadMesh.smooth_centroid.html │ │ ├── compas_singular.datastructures.QuadMesh.split_edge.html │ │ ├── compas_singular.datastructures.QuadMesh.split_face.html │ │ ├── compas_singular.datastructures.QuadMesh.strip_edge_midpoint_polyline.html │ │ ├── compas_singular.datastructures.QuadMesh.strip_edges.html │ │ ├── compas_singular.datastructures.QuadMesh.strip_face_centroid_polyline.html │ │ ├── compas_singular.datastructures.QuadMesh.strip_faces.html │ │ ├── compas_singular.datastructures.QuadMesh.strip_graph.html │ │ ├── compas_singular.datastructures.QuadMesh.strip_side_polyedges.html │ │ ├── compas_singular.datastructures.QuadMesh.strip_side_polylines.html │ │ ├── compas_singular.datastructures.QuadMesh.strips.html │ │ ├── compas_singular.datastructures.QuadMesh.substitute_vertex_in_strips.html │ │ ├── compas_singular.datastructures.QuadMesh.summary.html │ │ ├── compas_singular.datastructures.QuadMesh.to_data.html │ │ ├── compas_singular.datastructures.QuadMesh.to_json.html │ │ ├── compas_singular.datastructures.QuadMesh.to_lines.html │ │ ├── compas_singular.datastructures.QuadMesh.to_obj.html │ │ ├── compas_singular.datastructures.QuadMesh.to_off.html │ │ ├── compas_singular.datastructures.QuadMesh.to_pickle.html │ │ ├── compas_singular.datastructures.QuadMesh.to_ply.html │ │ ├── compas_singular.datastructures.QuadMesh.to_points.html │ │ ├── compas_singular.datastructures.QuadMesh.to_polygons.html │ │ ├── compas_singular.datastructures.QuadMesh.to_polylines.html │ │ ├── compas_singular.datastructures.QuadMesh.to_quadmesh.html │ │ ├── compas_singular.datastructures.QuadMesh.to_stl.html │ │ ├── compas_singular.datastructures.QuadMesh.to_trimesh.html │ │ ├── compas_singular.datastructures.QuadMesh.to_vertices_and_faces.html │ │ ├── compas_singular.datastructures.QuadMesh.transform.html │ │ ├── compas_singular.datastructures.QuadMesh.transformed.html │ │ ├── compas_singular.datastructures.QuadMesh.unify_cycles.html │ │ ├── compas_singular.datastructures.QuadMesh.unset_edge_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.unset_face_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.unset_vertex_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.update_default_edge_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.update_default_face_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.update_default_vertex_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_area.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_centroid.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_coordinates.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_curvature.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_degree.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_faces.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_index.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_laplacian.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_max_degree.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_min_degree.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighborhood.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighborhood_centroid.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighbors.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_normal.html │ │ ├── compas_singular.datastructures.QuadMesh.vertex_opposite_vertex.html │ │ ├── compas_singular.datastructures.QuadMesh.vertices.html │ │ ├── compas_singular.datastructures.QuadMesh.vertices_attribute.html │ │ ├── compas_singular.datastructures.QuadMesh.vertices_attributes.html │ │ ├── compas_singular.datastructures.QuadMesh.vertices_on_boundaries.html │ │ ├── compas_singular.datastructures.QuadMesh.vertices_on_boundary.html │ │ ├── compas_singular.datastructures.QuadMesh.vertices_where.html │ │ ├── compas_singular.datastructures.QuadMesh.vertices_where_predicate.html │ │ ├── compas_singular.datastructures.add_and_delete_strips.html │ │ ├── compas_singular.datastructures.add_handle.html │ │ ├── compas_singular.datastructures.add_opening.html │ │ ├── compas_singular.datastructures.add_strip.html │ │ ├── compas_singular.datastructures.add_strips.html │ │ ├── compas_singular.datastructures.automated_smoothing_constraints.html │ │ ├── compas_singular.datastructures.automated_smoothing_surface_constraints.html │ │ ├── compas_singular.datastructures.collateral_strip_deletions.html │ │ ├── compas_singular.datastructures.constrained_smoothing.html │ │ ├── compas_singular.datastructures.customized_smoothing_constraints.html │ │ ├── compas_singular.datastructures.delete_strip.html │ │ ├── compas_singular.datastructures.delete_strips.html │ │ ├── compas_singular.datastructures.dense_quad_mesh_polyedge_2_coloring.html │ │ ├── compas_singular.datastructures.display_smoothing_constraints.html │ │ ├── compas_singular.datastructures.fold.html │ │ ├── compas_singular.datastructures.fold_vertex_group.html │ │ ├── compas_singular.datastructures.merge_pseudo_quads_in_quad.html │ │ ├── compas_singular.datastructures.mesh_face_2_coloring.html │ │ ├── compas_singular.datastructures.mesh_face_n_coloring.html │ │ ├── compas_singular.datastructures.mesh_move_by.html │ │ ├── compas_singular.datastructures.mesh_move_vertex_by.html │ │ ├── compas_singular.datastructures.mesh_move_vertex_to.html │ │ ├── compas_singular.datastructures.mesh_move_vertices_by.html │ │ ├── compas_singular.datastructures.mesh_move_vertices_to.html │ │ ├── compas_singular.datastructures.mesh_vertex_2_coloring.html │ │ ├── compas_singular.datastructures.mesh_vertex_n_coloring.html │ │ ├── compas_singular.datastructures.quad_mesh_polyedge_2_coloring.html │ │ ├── compas_singular.datastructures.quad_mesh_polyedge_n_coloring.html │ │ ├── compas_singular.datastructures.quad_mesh_strip_2_coloring.html │ │ ├── compas_singular.datastructures.quad_mesh_strip_n_coloring.html │ │ ├── compas_singular.datastructures.split_quad_in_pseudo_quads.html │ │ ├── compas_singular.datastructures.split_strip.html │ │ ├── compas_singular.datastructures.split_strips.html │ │ ├── compas_singular.datastructures.strip_polyedge_update.html │ │ ├── compas_singular.datastructures.strips_to_split_to_prevent_boundary_collapse.html │ │ ├── compas_singular.datastructures.surface_constrained_smoothing.html │ │ ├── compas_singular.datastructures.total_boundary_deletions.html │ │ ├── compas_singular.geometry.Polyline.__init__.html │ │ ├── compas_singular.geometry.Polyline.copy.html │ │ ├── compas_singular.geometry.Polyline.from_data.html │ │ ├── compas_singular.geometry.Polyline.html │ │ ├── compas_singular.geometry.Polyline.is_closed.html │ │ ├── compas_singular.geometry.Polyline.is_selfintersecting.html │ │ ├── compas_singular.geometry.Polyline.point.html │ │ ├── compas_singular.geometry.Polyline.to_data.html │ │ ├── compas_singular.geometry.Polyline.transform.html │ │ ├── compas_singular.geometry.Polyline.transformed.html │ │ ├── compas_singular.geometry.Polyline.vertex_curvature.html │ │ ├── compas_singular.geometry.circular_array.html │ │ ├── compas_singular.geometry.closest_point_on_circle.html │ │ ├── compas_singular.geometry.closest_point_on_line.html │ │ ├── compas_singular.geometry.closest_point_on_polyline.html │ │ ├── compas_singular.geometry.closest_point_on_polylines.html │ │ ├── compas_singular.geometry.closest_point_on_segment.html │ │ ├── compas_singular.geometry.line_array.html │ │ ├── compas_singular.geometry.rectangular_array.html │ │ ├── compas_singular.geometry.spiral_array.html │ │ ├── compas_singular.rhino.RhinoCurve.__init__.html │ │ ├── compas_singular.rhino.RhinoCurve.closest_point.html │ │ ├── compas_singular.rhino.RhinoCurve.closest_points.html │ │ ├── compas_singular.rhino.RhinoCurve.divide.html │ │ ├── compas_singular.rhino.RhinoCurve.divide_length.html │ │ ├── compas_singular.rhino.RhinoCurve.from_geometry.html │ │ ├── compas_singular.rhino.RhinoCurve.from_guid.html │ │ ├── compas_singular.rhino.RhinoCurve.from_object.html │ │ ├── compas_singular.rhino.RhinoCurve.from_selection.html │ │ ├── compas_singular.rhino.RhinoCurve.html │ │ ├── compas_singular.rhino.RhinoCurve.is_circle.html │ │ ├── compas_singular.rhino.RhinoCurve.is_closed.html │ │ ├── compas_singular.rhino.RhinoCurve.is_line.html │ │ ├── compas_singular.rhino.RhinoCurve.is_nurbs.html │ │ ├── compas_singular.rhino.RhinoCurve.is_polygon.html │ │ ├── compas_singular.rhino.RhinoCurve.is_polyline.html │ │ ├── compas_singular.rhino.RhinoCurve.length.html │ │ ├── compas_singular.rhino.RhinoCurve.space.html │ │ ├── compas_singular.rhino.RhinoCurve.tangents.html │ │ ├── compas_singular.rhino.RhinoCurve.to_compas.html │ │ ├── compas_singular.rhino.RhinoCurve.transform.html │ │ ├── compas_singular.rhino.RhinoSurface.__init__.html │ │ ├── compas_singular.rhino.RhinoSurface.borders.html │ │ ├── compas_singular.rhino.RhinoSurface.brep_to_compas.html │ │ ├── compas_singular.rhino.RhinoSurface.closest_point.html │ │ ├── compas_singular.rhino.RhinoSurface.closest_point_on_boundaries.html │ │ ├── compas_singular.rhino.RhinoSurface.closest_points.html │ │ ├── compas_singular.rhino.RhinoSurface.closest_points_on_boundaries.html │ │ ├── compas_singular.rhino.RhinoSurface.from_geometry.html │ │ ├── compas_singular.rhino.RhinoSurface.from_guid.html │ │ ├── compas_singular.rhino.RhinoSurface.from_object.html │ │ ├── compas_singular.rhino.RhinoSurface.from_selection.html │ │ ├── compas_singular.rhino.RhinoSurface.heightfield.html │ │ ├── compas_singular.rhino.RhinoSurface.heightfield_to_compas.html │ │ ├── compas_singular.rhino.RhinoSurface.html │ │ ├── compas_singular.rhino.RhinoSurface.kinks.html │ │ ├── compas_singular.rhino.RhinoSurface.line_uv_to_xyz.html │ │ ├── compas_singular.rhino.RhinoSurface.mesh_uv_to_xyz.html │ │ ├── compas_singular.rhino.RhinoSurface.point_uv_to_xyz.html │ │ ├── compas_singular.rhino.RhinoSurface.point_xyz_to_uv.html │ │ ├── compas_singular.rhino.RhinoSurface.polyline_uv_to_xyz.html │ │ ├── compas_singular.rhino.RhinoSurface.space.html │ │ ├── compas_singular.rhino.RhinoSurface.to_compas.html │ │ ├── compas_singular.rhino.RhinoSurface.transform.html │ │ ├── compas_singular.rhino.RhinoSurface.uv_to_compas.html │ │ ├── compas_singular.rhino.draw_graph.html │ │ ├── compas_singular.rhino.select_mesh_polyedge.html │ │ ├── compas_singular.rhino.select_quad_mesh_polyedge.html │ │ ├── compas_singular.rhino.select_quad_mesh_strip.html │ │ ├── compas_singular.topology.is_adjacency_two_colorable.html │ │ ├── compas_singular.utilities.are_items_in_list.html │ │ ├── compas_singular.utilities.common_items.html │ │ ├── compas_singular.utilities.extract_pareto_indices.html │ │ ├── compas_singular.utilities.is_dominating.html │ │ ├── compas_singular.utilities.list_split.html │ │ ├── compas_singular.utilities.remove_isomorphism_in_integer_list.html │ │ └── compas_singular.utilities.sublist_from_to_items_in_closed_list.html │ ├── singular.algorithms.html │ ├── singular.datastructures.html │ ├── singular.geometry.html │ ├── singular.html │ ├── singular.rhino.html │ ├── singular.topology.html │ └── singular.utilities.html ├── conf.py ├── examples │ ├── 00_densification.html │ └── 01_decomposition.html ├── genindex.html ├── index.html ├── objects.inv ├── plot_directive │ └── api │ │ └── generated │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.hires.png │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.pdf │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_area-1.png │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.hires.png │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.pdf │ │ ├── compas_singular-algorithms-DecompositionRemap-smooth_centroid-1.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.hires.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.pdf │ │ ├── compas_singular-algorithms-Skeleton-smooth_area-1.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.hires.png │ │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.pdf │ │ ├── compas_singular-algorithms-Skeleton-smooth_centroid-1.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.hires.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.pdf │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_area-1.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.hires.png │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.pdf │ │ ├── compas_singular-algorithms-SkeletonDecomposition-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-CoarseQuadMesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-Mesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-Mesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-Mesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-Mesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-PseudoQuadMesh-smooth_centroid-1.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.hires.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.pdf │ │ ├── compas_singular-datastructures-QuadMesh-smooth_area-1.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.hires.png │ │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.pdf │ │ ├── compas_singular-datastructures-QuadMesh-smooth_centroid-1.png │ │ ├── singular-algorithms-DecompositionRemap-smooth_area-1.hires.png │ │ ├── singular-algorithms-DecompositionRemap-smooth_area-1.pdf │ │ ├── singular-algorithms-DecompositionRemap-smooth_area-1.png │ │ ├── singular-algorithms-DecompositionRemap-smooth_centroid-1.hires.png │ │ ├── singular-algorithms-DecompositionRemap-smooth_centroid-1.pdf │ │ ├── singular-algorithms-DecompositionRemap-smooth_centroid-1.png │ │ ├── singular-algorithms-Skeleton-smooth_area-1.hires.png │ │ ├── singular-algorithms-Skeleton-smooth_area-1.pdf │ │ ├── singular-algorithms-Skeleton-smooth_area-1.png │ │ ├── singular-algorithms-Skeleton-smooth_centroid-1.hires.png │ │ ├── singular-algorithms-Skeleton-smooth_centroid-1.pdf │ │ ├── singular-algorithms-Skeleton-smooth_centroid-1.png │ │ ├── singular-algorithms-SkeletonDecomposition-smooth_area-1.hires.png │ │ ├── singular-algorithms-SkeletonDecomposition-smooth_area-1.pdf │ │ ├── singular-algorithms-SkeletonDecomposition-smooth_area-1.png │ │ ├── singular-algorithms-SkeletonDecomposition-smooth_centroid-1.hires.png │ │ ├── singular-algorithms-SkeletonDecomposition-smooth_centroid-1.pdf │ │ ├── singular-algorithms-SkeletonDecomposition-smooth_centroid-1.png │ │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.hires.png │ │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.pdf │ │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_area-1.png │ │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.hires.png │ │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.pdf │ │ ├── singular-datastructures-CoarsePseudoQuadMesh-smooth_centroid-1.png │ │ ├── singular-datastructures-CoarseQuadMesh-smooth_area-1.hires.png │ │ ├── singular-datastructures-CoarseQuadMesh-smooth_area-1.pdf │ │ ├── singular-datastructures-CoarseQuadMesh-smooth_area-1.png │ │ ├── singular-datastructures-CoarseQuadMesh-smooth_centroid-1.hires.png │ │ ├── singular-datastructures-CoarseQuadMesh-smooth_centroid-1.pdf │ │ ├── singular-datastructures-CoarseQuadMesh-smooth_centroid-1.png │ │ ├── singular-datastructures-Mesh-smooth_area-1.hires.png │ │ ├── singular-datastructures-Mesh-smooth_area-1.pdf │ │ ├── singular-datastructures-Mesh-smooth_area-1.png │ │ ├── singular-datastructures-Mesh-smooth_centroid-1.hires.png │ │ ├── singular-datastructures-Mesh-smooth_centroid-1.pdf │ │ ├── singular-datastructures-Mesh-smooth_centroid-1.png │ │ ├── singular-datastructures-PseudoQuadMesh-smooth_area-1.hires.png │ │ ├── singular-datastructures-PseudoQuadMesh-smooth_area-1.pdf │ │ ├── singular-datastructures-PseudoQuadMesh-smooth_area-1.png │ │ ├── singular-datastructures-PseudoQuadMesh-smooth_centroid-1.hires.png │ │ ├── singular-datastructures-PseudoQuadMesh-smooth_centroid-1.pdf │ │ ├── singular-datastructures-PseudoQuadMesh-smooth_centroid-1.png │ │ ├── singular-datastructures-QuadMesh-smooth_area-1.hires.png │ │ ├── singular-datastructures-QuadMesh-smooth_area-1.pdf │ │ ├── singular-datastructures-QuadMesh-smooth_area-1.png │ │ ├── singular-datastructures-QuadMesh-smooth_centroid-1.hires.png │ │ ├── singular-datastructures-QuadMesh-smooth_centroid-1.pdf │ │ └── singular-datastructures-QuadMesh-smooth_centroid-1.png ├── py-modindex.html ├── search.html └── searchindex.js ├── docsource ├── .nojekyll ├── 01_getting_started.rst ├── 02_overview.rst ├── 03_examples.rst ├── 04_api.rst ├── 05_license.rst ├── 06_citing.rst ├── 07_publications.rst ├── PLACEHOLDER ├── _images │ ├── 00_densification_0.png │ ├── 00_densification_1.png │ ├── 00_densification_2.png │ ├── 00_densification_3.png │ ├── 00_densification_poles_0.png │ ├── 00_densification_poles_1.png │ ├── 01_decomposition_1.png │ ├── 01_decomposition_2.png │ ├── 01_decomposition_3.png │ ├── 01_front.jpg │ └── PLACEHOLDER ├── _static │ └── PLACEHOLDER ├── _templates │ ├── PLACEHOLDER │ └── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ ├── method.rst │ │ └── module.rst ├── api │ ├── compas_singular.algorithms.rst │ ├── compas_singular.datastructures.rst │ ├── compas_singular.geometry.rst │ ├── compas_singular.rhino.rst │ ├── compas_singular.rst │ ├── compas_singular.topology.rst │ ├── compas_singular.utilities.rst │ └── generated │ │ ├── compas_singular.algorithms.DecompositionRemap.__init__.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.add_face.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.add_vertex.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.area.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.boundaries.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.boundary_kinks.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.bounding_box.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.bounding_box_xy.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.branches.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_compas_singularity_to_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_compas_singularity_to_compas_singularity.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_boundary_kinks.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_collapsed_boundaries.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.branches_splitting_flipped_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.centroid.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.clear.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.collapse_edge.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.compas_singular_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.compas_singular_points.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.connected_components.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.copy.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.corner_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.corner_vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.cull_vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.cut.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_curves.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_delaunay.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_mesh.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polyline.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polylines.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_polysurface.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.decomposition_skeleton.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.delete_face.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.delete_vertex.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.dual.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_coordinates.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_direction.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_length.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_midpoint.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_point.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edge_vector.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edges.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_on_boundaries.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_on_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_where.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.edges_where_predicate.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.euler.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency_halfedge.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_adjacency_vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_area.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_aspect_ratio.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_center.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_centroid.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_coordinates.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_corners.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_curvature.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_degree.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_flatness.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_halfedges.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_max_degree.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_min_degree.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_neighborhood.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_neighbors.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_normal.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_skewness.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertex_ancestor.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertex_descendant.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.face_vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_on_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_where.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.faces_where_predicate.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.flip_cycles.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_data.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_json.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_lines.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_mesh.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_obj.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_off.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_pickle.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_ply.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_points.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polygons.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polyhedron.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_polylines.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_shape.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_skeleton.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_stl.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.from_vertices_and_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.genus.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_face.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_face_vertex.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_vertex.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.get_any_vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.gkey_key.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.halfedge_face.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.has_edge.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.has_face.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.has_halfedge.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.has_vertex.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.index_key.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.insert_vertex.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_boundary_vertex_kink.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_connected.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_edge_on_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_empty.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_face_on_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_manifold.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_orientable.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_quadmesh.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_regular.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_trimesh.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_valid.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_vertex_connected.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.is_vertex_on_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.join.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.key_gkey.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.key_index.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.lines.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.normal.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_edges.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.number_of_vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.quadrangulate_polygonal_faces_wip.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.smooth_area.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.smooth_centroid.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.solve_triangular_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.split_edge.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.split_face.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.split_quads_with_poles.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.split_vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.store_pole_data.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.summary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_data.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_json.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_lines.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_obj.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_off.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_pickle.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_ply.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_points.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_polygons.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_polylines.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_quadmesh.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_stl.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_trimesh.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.to_vertices_and_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.transform.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.transformed.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.unify_cycles.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_edge_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_face_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.unset_vertex_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_edge_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_face_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.update_default_vertex_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_area.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_centroid.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_coordinates.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_curvature.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_degree.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_faces.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_laplacian.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_max_degree.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_min_degree.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighborhood.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_neighbors.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertex_normal.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_attribute.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_attributes.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_on_boundaries.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_on_boundary.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_where.rst │ │ ├── compas_singular.algorithms.DecompositionRemap.vertices_where_predicate.rst │ │ ├── compas_singular.algorithms.Skeleton.__init__.rst │ │ ├── compas_singular.algorithms.Skeleton.add_face.rst │ │ ├── compas_singular.algorithms.Skeleton.add_vertex.rst │ │ ├── compas_singular.algorithms.Skeleton.area.rst │ │ ├── compas_singular.algorithms.Skeleton.boundaries.rst │ │ ├── compas_singular.algorithms.Skeleton.boundary_kinks.rst │ │ ├── compas_singular.algorithms.Skeleton.bounding_box.rst │ │ ├── compas_singular.algorithms.Skeleton.bounding_box_xy.rst │ │ ├── compas_singular.algorithms.Skeleton.branches.rst │ │ ├── compas_singular.algorithms.Skeleton.centroid.rst │ │ ├── compas_singular.algorithms.Skeleton.clear.rst │ │ ├── compas_singular.algorithms.Skeleton.collapse_edge.rst │ │ ├── compas_singular.algorithms.Skeleton.compas_singular_faces.rst │ │ ├── compas_singular.algorithms.Skeleton.compas_singular_points.rst │ │ ├── compas_singular.algorithms.Skeleton.connected_components.rst │ │ ├── compas_singular.algorithms.Skeleton.copy.rst │ │ ├── compas_singular.algorithms.Skeleton.cull_vertices.rst │ │ ├── compas_singular.algorithms.Skeleton.cut.rst │ │ ├── compas_singular.algorithms.Skeleton.delete_face.rst │ │ ├── compas_singular.algorithms.Skeleton.delete_vertex.rst │ │ ├── compas_singular.algorithms.Skeleton.dual.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_coordinates.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_direction.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_faces.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_length.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_midpoint.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_point.rst │ │ ├── compas_singular.algorithms.Skeleton.edge_vector.rst │ │ ├── compas_singular.algorithms.Skeleton.edges.rst │ │ ├── compas_singular.algorithms.Skeleton.edges_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.edges_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.edges_on_boundaries.rst │ │ ├── compas_singular.algorithms.Skeleton.edges_on_boundary.rst │ │ ├── compas_singular.algorithms.Skeleton.edges_where.rst │ │ ├── compas_singular.algorithms.Skeleton.edges_where_predicate.rst │ │ ├── compas_singular.algorithms.Skeleton.euler.rst │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency.rst │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency_halfedge.rst │ │ ├── compas_singular.algorithms.Skeleton.face_adjacency_vertices.rst │ │ ├── compas_singular.algorithms.Skeleton.face_area.rst │ │ ├── compas_singular.algorithms.Skeleton.face_aspect_ratio.rst │ │ ├── compas_singular.algorithms.Skeleton.face_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.face_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.face_center.rst │ │ ├── compas_singular.algorithms.Skeleton.face_centroid.rst │ │ ├── compas_singular.algorithms.Skeleton.face_coordinates.rst │ │ ├── compas_singular.algorithms.Skeleton.face_corners.rst │ │ ├── compas_singular.algorithms.Skeleton.face_curvature.rst │ │ ├── compas_singular.algorithms.Skeleton.face_degree.rst │ │ ├── compas_singular.algorithms.Skeleton.face_flatness.rst │ │ ├── compas_singular.algorithms.Skeleton.face_halfedges.rst │ │ ├── compas_singular.algorithms.Skeleton.face_max_degree.rst │ │ ├── compas_singular.algorithms.Skeleton.face_min_degree.rst │ │ ├── compas_singular.algorithms.Skeleton.face_neighborhood.rst │ │ ├── compas_singular.algorithms.Skeleton.face_neighbors.rst │ │ ├── compas_singular.algorithms.Skeleton.face_normal.rst │ │ ├── compas_singular.algorithms.Skeleton.face_skewness.rst │ │ ├── compas_singular.algorithms.Skeleton.face_vertex_ancestor.rst │ │ ├── compas_singular.algorithms.Skeleton.face_vertex_descendant.rst │ │ ├── compas_singular.algorithms.Skeleton.face_vertices.rst │ │ ├── compas_singular.algorithms.Skeleton.faces.rst │ │ ├── compas_singular.algorithms.Skeleton.faces_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.faces_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.faces_on_boundary.rst │ │ ├── compas_singular.algorithms.Skeleton.faces_where.rst │ │ ├── compas_singular.algorithms.Skeleton.faces_where_predicate.rst │ │ ├── compas_singular.algorithms.Skeleton.flip_cycles.rst │ │ ├── compas_singular.algorithms.Skeleton.from_data.rst │ │ ├── compas_singular.algorithms.Skeleton.from_json.rst │ │ ├── compas_singular.algorithms.Skeleton.from_lines.rst │ │ ├── compas_singular.algorithms.Skeleton.from_mesh.rst │ │ ├── compas_singular.algorithms.Skeleton.from_obj.rst │ │ ├── compas_singular.algorithms.Skeleton.from_off.rst │ │ ├── compas_singular.algorithms.Skeleton.from_pickle.rst │ │ ├── compas_singular.algorithms.Skeleton.from_ply.rst │ │ ├── compas_singular.algorithms.Skeleton.from_points.rst │ │ ├── compas_singular.algorithms.Skeleton.from_polygons.rst │ │ ├── compas_singular.algorithms.Skeleton.from_polyhedron.rst │ │ ├── compas_singular.algorithms.Skeleton.from_polylines.rst │ │ ├── compas_singular.algorithms.Skeleton.from_shape.rst │ │ ├── compas_singular.algorithms.Skeleton.from_stl.rst │ │ ├── compas_singular.algorithms.Skeleton.from_vertices_and_faces.rst │ │ ├── compas_singular.algorithms.Skeleton.genus.rst │ │ ├── compas_singular.algorithms.Skeleton.get_any_face.rst │ │ ├── compas_singular.algorithms.Skeleton.get_any_face_vertex.rst │ │ ├── compas_singular.algorithms.Skeleton.get_any_vertex.rst │ │ ├── compas_singular.algorithms.Skeleton.get_any_vertices.rst │ │ ├── compas_singular.algorithms.Skeleton.gkey_key.rst │ │ ├── compas_singular.algorithms.Skeleton.halfedge_face.rst │ │ ├── compas_singular.algorithms.Skeleton.has_edge.rst │ │ ├── compas_singular.algorithms.Skeleton.has_face.rst │ │ ├── compas_singular.algorithms.Skeleton.has_halfedge.rst │ │ ├── compas_singular.algorithms.Skeleton.has_vertex.rst │ │ ├── compas_singular.algorithms.Skeleton.index_key.rst │ │ ├── compas_singular.algorithms.Skeleton.insert_vertex.rst │ │ ├── compas_singular.algorithms.Skeleton.is_boundary_vertex_kink.rst │ │ ├── compas_singular.algorithms.Skeleton.is_connected.rst │ │ ├── compas_singular.algorithms.Skeleton.is_edge_on_boundary.rst │ │ ├── compas_singular.algorithms.Skeleton.is_empty.rst │ │ ├── compas_singular.algorithms.Skeleton.is_face_on_boundary.rst │ │ ├── compas_singular.algorithms.Skeleton.is_manifold.rst │ │ ├── compas_singular.algorithms.Skeleton.is_orientable.rst │ │ ├── compas_singular.algorithms.Skeleton.is_quadmesh.rst │ │ ├── compas_singular.algorithms.Skeleton.is_regular.rst │ │ ├── compas_singular.algorithms.Skeleton.is_trimesh.rst │ │ ├── compas_singular.algorithms.Skeleton.is_valid.rst │ │ ├── compas_singular.algorithms.Skeleton.is_vertex_connected.rst │ │ ├── compas_singular.algorithms.Skeleton.is_vertex_on_boundary.rst │ │ ├── compas_singular.algorithms.Skeleton.join.rst │ │ ├── compas_singular.algorithms.Skeleton.key_gkey.rst │ │ ├── compas_singular.algorithms.Skeleton.key_index.rst │ │ ├── compas_singular.algorithms.Skeleton.lines.rst │ │ ├── compas_singular.algorithms.Skeleton.normal.rst │ │ ├── compas_singular.algorithms.Skeleton.number_of_edges.rst │ │ ├── compas_singular.algorithms.Skeleton.number_of_faces.rst │ │ ├── compas_singular.algorithms.Skeleton.number_of_vertices.rst │ │ ├── compas_singular.algorithms.Skeleton.rst │ │ ├── compas_singular.algorithms.Skeleton.smooth_area.rst │ │ ├── compas_singular.algorithms.Skeleton.smooth_centroid.rst │ │ ├── compas_singular.algorithms.Skeleton.split_edge.rst │ │ ├── compas_singular.algorithms.Skeleton.split_face.rst │ │ ├── compas_singular.algorithms.Skeleton.summary.rst │ │ ├── compas_singular.algorithms.Skeleton.to_data.rst │ │ ├── compas_singular.algorithms.Skeleton.to_json.rst │ │ ├── compas_singular.algorithms.Skeleton.to_lines.rst │ │ ├── compas_singular.algorithms.Skeleton.to_obj.rst │ │ ├── compas_singular.algorithms.Skeleton.to_off.rst │ │ ├── compas_singular.algorithms.Skeleton.to_pickle.rst │ │ ├── compas_singular.algorithms.Skeleton.to_ply.rst │ │ ├── compas_singular.algorithms.Skeleton.to_points.rst │ │ ├── compas_singular.algorithms.Skeleton.to_polygons.rst │ │ ├── compas_singular.algorithms.Skeleton.to_polylines.rst │ │ ├── compas_singular.algorithms.Skeleton.to_quadmesh.rst │ │ ├── compas_singular.algorithms.Skeleton.to_stl.rst │ │ ├── compas_singular.algorithms.Skeleton.to_trimesh.rst │ │ ├── compas_singular.algorithms.Skeleton.to_vertices_and_faces.rst │ │ ├── compas_singular.algorithms.Skeleton.transform.rst │ │ ├── compas_singular.algorithms.Skeleton.transformed.rst │ │ ├── compas_singular.algorithms.Skeleton.unify_cycles.rst │ │ ├── compas_singular.algorithms.Skeleton.unset_edge_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.unset_face_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.unset_vertex_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.update_default_edge_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.update_default_face_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.update_default_vertex_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_area.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_centroid.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_coordinates.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_curvature.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_degree.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_faces.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_laplacian.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_max_degree.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_min_degree.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighborhood.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_neighbors.rst │ │ ├── compas_singular.algorithms.Skeleton.vertex_normal.rst │ │ ├── compas_singular.algorithms.Skeleton.vertices.rst │ │ ├── compas_singular.algorithms.Skeleton.vertices_attribute.rst │ │ ├── compas_singular.algorithms.Skeleton.vertices_attributes.rst │ │ ├── compas_singular.algorithms.Skeleton.vertices_on_boundaries.rst │ │ ├── compas_singular.algorithms.Skeleton.vertices_on_boundary.rst │ │ ├── compas_singular.algorithms.Skeleton.vertices_where.rst │ │ ├── compas_singular.algorithms.Skeleton.vertices_where_predicate.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.__init__.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.add_face.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.add_vertex.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.area.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.boundaries.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.boundary_kinks.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.bounding_box.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.bounding_box_xy.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_compas_singularity_to_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_compas_singularity_to_compas_singularity.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_boundary_kinks.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_collapsed_boundaries.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.branches_splitting_flipped_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.centroid.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.clear.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.collapse_edge.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.compas_singular_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.compas_singular_points.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.connected_components.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.copy.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.corner_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.corner_vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.cull_vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.cut.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_mesh.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_polyline.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.decomposition_polylines.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.delete_face.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.delete_vertex.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.dual.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_coordinates.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_direction.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_length.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_midpoint.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_point.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edge_vector.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_on_boundaries.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_on_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_where.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.edges_where_predicate.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.euler.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency_halfedge.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_adjacency_vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_area.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_aspect_ratio.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_center.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_centroid.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_coordinates.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_corners.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_curvature.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_degree.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_flatness.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_halfedges.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_max_degree.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_min_degree.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_neighborhood.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_neighbors.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_normal.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_skewness.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertex_ancestor.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertex_descendant.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.face_vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_on_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_where.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.faces_where_predicate.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.flip_cycles.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_data.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_json.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_lines.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_mesh.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_obj.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_off.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_pickle.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_ply.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_points.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polygons.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polyhedron.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_polylines.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_shape.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_skeleton.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_stl.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.from_vertices_and_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.genus.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_face.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_face_vertex.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_vertex.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.get_any_vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.gkey_key.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.halfedge_face.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_edge.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_face.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_halfedge.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.has_vertex.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.index_key.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.insert_vertex.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_boundary_vertex_kink.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_connected.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_edge_on_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_empty.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_face_on_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_manifold.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_orientable.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_quadmesh.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_regular.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_trimesh.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_valid.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_vertex_connected.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.is_vertex_on_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.join.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.key_gkey.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.key_index.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.lines.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.normal.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_edges.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.number_of_vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.quadrangulate_polygonal_faces_wip.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.smooth_area.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.smooth_centroid.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.solve_triangular_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_edge.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_face.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_quads_with_poles.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.split_vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.store_pole_data.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.summary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_data.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_json.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_lines.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_obj.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_off.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_pickle.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_ply.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_points.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_polygons.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_polylines.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_quadmesh.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_stl.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_trimesh.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.to_vertices_and_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.transform.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.transformed.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unify_cycles.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_edge_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_face_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.unset_vertex_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_edge_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_face_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.update_default_vertex_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_area.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_centroid.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_coordinates.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_curvature.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_degree.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_faces.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_laplacian.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_max_degree.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_min_degree.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighborhood.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_neighbors.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertex_normal.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_attribute.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_attributes.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_on_boundaries.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_on_boundary.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_where.rst │ │ ├── compas_singular.algorithms.SkeletonDecomposition.vertices_where_predicate.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.__init__.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.get_results.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_0.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_1.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_2.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.projection_4.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.rst │ │ ├── compas_singular.algorithms.TwoColourableProjection.strip_deletions_yielding_two_colourability.rst │ │ ├── compas_singular.algorithms.boundary_triangulation.rst │ │ ├── compas_singular.algorithms.surface_discrete_mapping.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.__init__.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.add_face.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.add_vertex.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.area.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.boundaries.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.boundary_kinks.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.bounding_box.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.bounding_box_xy.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.centroid.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.clear.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.coarse_edge_dense_edges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collapse_edge.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_polyedge.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_polyedges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_strip.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.collect_strips.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularities.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyedge_decomposition.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyedges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polyline_decomposition.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.compas_singularity_polylines.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.connected_components.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.copy.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.cull_vertices.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.cut.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_face.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_face_in_strips.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.delete_vertex.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.densification.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.dual.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_coordinates.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_direction.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_length.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_midpoint.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_point.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_strip.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edge_vector.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundaries.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_where.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.edges_where_predicate.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.euler.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_halfedge.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_adjacency_vertices.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_area.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_aspect_ratio.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_center.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_centroid.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_coordinates.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_corners.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_curvature.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_degree.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_flatness.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_halfedges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_max_degree.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_min_degree.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_neighborhood.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_neighbors.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_normal.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_opposite_edge.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_skewness.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_strips.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertex_ancestor.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertex_descendant.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.face_vertices.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_where.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.faces_where_predicate.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.flip_cycles.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_data.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_json.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_lines.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_obj.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_off.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_pickle.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_ply.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_points.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polygons.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polyhedron.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_polylines.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_quad_mesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_shape.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_stl.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_face_poles.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.from_vertices_and_faces_with_poles.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.genus.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_face.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_face_vertex.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_vertex.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_any_vertices.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_polygonal_mesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_quad_mesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_strip_densities.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.get_strip_density.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.gkey_key.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.halfedge_face.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_edge.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_face.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_halfedge.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_strip_poles.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.has_vertex.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.index_key.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.insert_vertex.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_boundary_vertex_kink.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_connected.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_edge_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_empty.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_face_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_face_pseudo_quad.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_manifold.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_orientable.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_pole.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_polyedge_closed.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_quadmesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_regular.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_strip_closed.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_trimesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_valid.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_compas_singular.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_connected.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_full_pole.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_partial_pole.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.is_vertex_pole.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.join.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.key_gkey.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.key_index.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.normal.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_edges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_strips.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.number_of_vertices.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.poles.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polyedge_graph.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polyedges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.polylines.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_mesh_density_face_target.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_polygonal_mesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_quad_mesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_func.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strip_density_target.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_func.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.set_strips_density_target.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.smooth_area.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.smooth_centroid.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.split_edge.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.split_face.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_edge_midpoint_polyline.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_edges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_face_centroid_polyline.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_graph.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_side_polyedges.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strip_side_polylines.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.strips.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.substitute_vertex_in_strips.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.summary.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_data.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_json.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_lines.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_obj.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_off.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_pickle.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_ply.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_points.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_polygons.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_polylines.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_quadmesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_stl.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_trimesh.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.to_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.transform.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.transformed.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unify_cycles.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_edge_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_face_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.unset_vertex_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_edge_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_face_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.update_default_vertex_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_area.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_centroid.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_coordinates.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_curvature.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_degree.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_index.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_laplacian.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_max_degree.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_min_degree.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_neighbors.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_normal.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_opposite_vertex.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertex_pole_faces.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_attribute.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_attributes.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundaries.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_where.rst │ │ ├── compas_singular.datastructures.CoarsePseudoQuadMesh.vertices_where_predicate.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.__init__.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.add_face.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.add_vertex.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.area.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.boundaries.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.boundary_kinks.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.bounding_box.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.bounding_box_xy.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.centroid.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.clear.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.coarse_edge_dense_edges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collapse_edge.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_polyedge.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_polyedges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_strip.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.collect_strips.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularities.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyedge_decomposition.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyedges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polyline_decomposition.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.compas_singularity_polylines.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.connected_components.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.copy.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.cull_vertices.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.cut.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_face.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_face_in_strips.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.delete_vertex.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.densification.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.dual.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_coordinates.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_direction.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_faces.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_length.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_midpoint.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_point.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_strip.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edge_vector.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_on_boundaries.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_where.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.edges_where_predicate.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.euler.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency_halfedge.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_adjacency_vertices.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_area.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_aspect_ratio.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_center.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_centroid.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_coordinates.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_corners.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_curvature.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_degree.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_flatness.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_halfedges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_max_degree.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_min_degree.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_neighborhood.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_neighbors.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_normal.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_opposite_edge.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_skewness.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_strips.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertex_ancestor.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertex_descendant.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.face_vertices.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_where.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.faces_where_predicate.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.flip_cycles.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_data.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_json.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_lines.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_obj.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_off.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_pickle.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_ply.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_points.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polygons.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polyhedron.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_polylines.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_quad_mesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_shape.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_stl.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.from_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.genus.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_face.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_face_vertex.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_vertex.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_any_vertices.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_polygonal_mesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_quad_mesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_strip_densities.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.get_strip_density.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.gkey_key.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.halfedge_face.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_edge.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_face.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_halfedge.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.has_vertex.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.index_key.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.insert_vertex.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_boundary_vertex_kink.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_connected.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_edge_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_empty.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_face_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_manifold.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_orientable.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_polyedge_closed.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_quadmesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_regular.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_strip_closed.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_trimesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_valid.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_compas_singular.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_connected.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.is_vertex_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.join.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.key_gkey.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.key_index.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.normal.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_edges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_faces.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_strips.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.number_of_vertices.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polyedge_graph.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polyedges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.polylines.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_mesh_density_face_target.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_polygonal_mesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_quad_mesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density_func.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strip_density_target.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density_func.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.set_strips_density_target.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.smooth_area.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.smooth_centroid.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.split_edge.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.split_face.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_edge_midpoint_polyline.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_edges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_face_centroid_polyline.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_faces.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_graph.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_side_polyedges.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strip_side_polylines.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.strips.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.substitute_vertex_in_strips.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.summary.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_data.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_json.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_lines.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_obj.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_off.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_pickle.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_ply.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_points.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_polygons.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_polylines.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_quadmesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_stl.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_trimesh.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.to_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.transform.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.transformed.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unify_cycles.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_edge_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_face_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.unset_vertex_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_edge_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_face_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.update_default_vertex_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_area.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_centroid.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_coordinates.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_curvature.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_degree.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_faces.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_index.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_laplacian.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_max_degree.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_min_degree.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighborhood.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_neighbors.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_normal.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertex_opposite_vertex.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_attribute.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_attributes.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_on_boundaries.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_on_boundary.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_where.rst │ │ ├── compas_singular.datastructures.CoarseQuadMesh.vertices_where_predicate.rst │ │ ├── compas_singular.datastructures.Mesh.__init__.rst │ │ ├── compas_singular.datastructures.Mesh.add_face.rst │ │ ├── compas_singular.datastructures.Mesh.add_vertex.rst │ │ ├── compas_singular.datastructures.Mesh.area.rst │ │ ├── compas_singular.datastructures.Mesh.boundaries.rst │ │ ├── compas_singular.datastructures.Mesh.boundary_kinks.rst │ │ ├── compas_singular.datastructures.Mesh.bounding_box.rst │ │ ├── compas_singular.datastructures.Mesh.bounding_box_xy.rst │ │ ├── compas_singular.datastructures.Mesh.centroid.rst │ │ ├── compas_singular.datastructures.Mesh.clear.rst │ │ ├── compas_singular.datastructures.Mesh.collapse_edge.rst │ │ ├── compas_singular.datastructures.Mesh.connected_components.rst │ │ ├── compas_singular.datastructures.Mesh.copy.rst │ │ ├── compas_singular.datastructures.Mesh.cull_vertices.rst │ │ ├── compas_singular.datastructures.Mesh.cut.rst │ │ ├── compas_singular.datastructures.Mesh.delete_face.rst │ │ ├── compas_singular.datastructures.Mesh.delete_vertex.rst │ │ ├── compas_singular.datastructures.Mesh.dual.rst │ │ ├── compas_singular.datastructures.Mesh.edge_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.edge_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.edge_coordinates.rst │ │ ├── compas_singular.datastructures.Mesh.edge_direction.rst │ │ ├── compas_singular.datastructures.Mesh.edge_faces.rst │ │ ├── compas_singular.datastructures.Mesh.edge_length.rst │ │ ├── compas_singular.datastructures.Mesh.edge_midpoint.rst │ │ ├── compas_singular.datastructures.Mesh.edge_point.rst │ │ ├── compas_singular.datastructures.Mesh.edge_vector.rst │ │ ├── compas_singular.datastructures.Mesh.edges.rst │ │ ├── compas_singular.datastructures.Mesh.edges_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.edges_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.edges_on_boundaries.rst │ │ ├── compas_singular.datastructures.Mesh.edges_on_boundary.rst │ │ ├── compas_singular.datastructures.Mesh.edges_where.rst │ │ ├── compas_singular.datastructures.Mesh.edges_where_predicate.rst │ │ ├── compas_singular.datastructures.Mesh.euler.rst │ │ ├── compas_singular.datastructures.Mesh.face_adjacency.rst │ │ ├── compas_singular.datastructures.Mesh.face_adjacency_halfedge.rst │ │ ├── compas_singular.datastructures.Mesh.face_adjacency_vertices.rst │ │ ├── compas_singular.datastructures.Mesh.face_area.rst │ │ ├── compas_singular.datastructures.Mesh.face_aspect_ratio.rst │ │ ├── compas_singular.datastructures.Mesh.face_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.face_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.face_center.rst │ │ ├── compas_singular.datastructures.Mesh.face_centroid.rst │ │ ├── compas_singular.datastructures.Mesh.face_coordinates.rst │ │ ├── compas_singular.datastructures.Mesh.face_corners.rst │ │ ├── compas_singular.datastructures.Mesh.face_curvature.rst │ │ ├── compas_singular.datastructures.Mesh.face_degree.rst │ │ ├── compas_singular.datastructures.Mesh.face_flatness.rst │ │ ├── compas_singular.datastructures.Mesh.face_halfedges.rst │ │ ├── compas_singular.datastructures.Mesh.face_max_degree.rst │ │ ├── compas_singular.datastructures.Mesh.face_min_degree.rst │ │ ├── compas_singular.datastructures.Mesh.face_neighborhood.rst │ │ ├── compas_singular.datastructures.Mesh.face_neighbors.rst │ │ ├── compas_singular.datastructures.Mesh.face_normal.rst │ │ ├── compas_singular.datastructures.Mesh.face_skewness.rst │ │ ├── compas_singular.datastructures.Mesh.face_vertex_ancestor.rst │ │ ├── compas_singular.datastructures.Mesh.face_vertex_descendant.rst │ │ ├── compas_singular.datastructures.Mesh.face_vertices.rst │ │ ├── compas_singular.datastructures.Mesh.faces.rst │ │ ├── compas_singular.datastructures.Mesh.faces_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.faces_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.faces_on_boundary.rst │ │ ├── compas_singular.datastructures.Mesh.faces_where.rst │ │ ├── compas_singular.datastructures.Mesh.faces_where_predicate.rst │ │ ├── compas_singular.datastructures.Mesh.flip_cycles.rst │ │ ├── compas_singular.datastructures.Mesh.from_data.rst │ │ ├── compas_singular.datastructures.Mesh.from_json.rst │ │ ├── compas_singular.datastructures.Mesh.from_lines.rst │ │ ├── compas_singular.datastructures.Mesh.from_obj.rst │ │ ├── compas_singular.datastructures.Mesh.from_off.rst │ │ ├── compas_singular.datastructures.Mesh.from_pickle.rst │ │ ├── compas_singular.datastructures.Mesh.from_ply.rst │ │ ├── compas_singular.datastructures.Mesh.from_points.rst │ │ ├── compas_singular.datastructures.Mesh.from_polygons.rst │ │ ├── compas_singular.datastructures.Mesh.from_polyhedron.rst │ │ ├── compas_singular.datastructures.Mesh.from_polylines.rst │ │ ├── compas_singular.datastructures.Mesh.from_shape.rst │ │ ├── compas_singular.datastructures.Mesh.from_stl.rst │ │ ├── compas_singular.datastructures.Mesh.from_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.Mesh.genus.rst │ │ ├── compas_singular.datastructures.Mesh.get_any_face.rst │ │ ├── compas_singular.datastructures.Mesh.get_any_face_vertex.rst │ │ ├── compas_singular.datastructures.Mesh.get_any_vertex.rst │ │ ├── compas_singular.datastructures.Mesh.get_any_vertices.rst │ │ ├── compas_singular.datastructures.Mesh.gkey_key.rst │ │ ├── compas_singular.datastructures.Mesh.halfedge_face.rst │ │ ├── compas_singular.datastructures.Mesh.has_edge.rst │ │ ├── compas_singular.datastructures.Mesh.has_face.rst │ │ ├── compas_singular.datastructures.Mesh.has_halfedge.rst │ │ ├── compas_singular.datastructures.Mesh.has_vertex.rst │ │ ├── compas_singular.datastructures.Mesh.index_key.rst │ │ ├── compas_singular.datastructures.Mesh.insert_vertex.rst │ │ ├── compas_singular.datastructures.Mesh.is_boundary_vertex_kink.rst │ │ ├── compas_singular.datastructures.Mesh.is_connected.rst │ │ ├── compas_singular.datastructures.Mesh.is_edge_on_boundary.rst │ │ ├── compas_singular.datastructures.Mesh.is_empty.rst │ │ ├── compas_singular.datastructures.Mesh.is_face_on_boundary.rst │ │ ├── compas_singular.datastructures.Mesh.is_manifold.rst │ │ ├── compas_singular.datastructures.Mesh.is_orientable.rst │ │ ├── compas_singular.datastructures.Mesh.is_quadmesh.rst │ │ ├── compas_singular.datastructures.Mesh.is_regular.rst │ │ ├── compas_singular.datastructures.Mesh.is_trimesh.rst │ │ ├── compas_singular.datastructures.Mesh.is_valid.rst │ │ ├── compas_singular.datastructures.Mesh.is_vertex_connected.rst │ │ ├── compas_singular.datastructures.Mesh.is_vertex_on_boundary.rst │ │ ├── compas_singular.datastructures.Mesh.join.rst │ │ ├── compas_singular.datastructures.Mesh.key_gkey.rst │ │ ├── compas_singular.datastructures.Mesh.key_index.rst │ │ ├── compas_singular.datastructures.Mesh.normal.rst │ │ ├── compas_singular.datastructures.Mesh.number_of_edges.rst │ │ ├── compas_singular.datastructures.Mesh.number_of_faces.rst │ │ ├── compas_singular.datastructures.Mesh.number_of_vertices.rst │ │ ├── compas_singular.datastructures.Mesh.rst │ │ ├── compas_singular.datastructures.Mesh.smooth_area.rst │ │ ├── compas_singular.datastructures.Mesh.smooth_centroid.rst │ │ ├── compas_singular.datastructures.Mesh.split_edge.rst │ │ ├── compas_singular.datastructures.Mesh.split_face.rst │ │ ├── compas_singular.datastructures.Mesh.summary.rst │ │ ├── compas_singular.datastructures.Mesh.to_data.rst │ │ ├── compas_singular.datastructures.Mesh.to_json.rst │ │ ├── compas_singular.datastructures.Mesh.to_lines.rst │ │ ├── compas_singular.datastructures.Mesh.to_obj.rst │ │ ├── compas_singular.datastructures.Mesh.to_off.rst │ │ ├── compas_singular.datastructures.Mesh.to_pickle.rst │ │ ├── compas_singular.datastructures.Mesh.to_ply.rst │ │ ├── compas_singular.datastructures.Mesh.to_points.rst │ │ ├── compas_singular.datastructures.Mesh.to_polygons.rst │ │ ├── compas_singular.datastructures.Mesh.to_polylines.rst │ │ ├── compas_singular.datastructures.Mesh.to_quadmesh.rst │ │ ├── compas_singular.datastructures.Mesh.to_stl.rst │ │ ├── compas_singular.datastructures.Mesh.to_trimesh.rst │ │ ├── compas_singular.datastructures.Mesh.to_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.Mesh.transform.rst │ │ ├── compas_singular.datastructures.Mesh.transformed.rst │ │ ├── compas_singular.datastructures.Mesh.unify_cycles.rst │ │ ├── compas_singular.datastructures.Mesh.unset_edge_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.unset_face_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.unset_vertex_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.update_default_edge_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.update_default_face_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.update_default_vertex_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_area.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_centroid.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_coordinates.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_curvature.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_degree.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_faces.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_laplacian.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_max_degree.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_min_degree.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_neighborhood.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_neighbors.rst │ │ ├── compas_singular.datastructures.Mesh.vertex_normal.rst │ │ ├── compas_singular.datastructures.Mesh.vertices.rst │ │ ├── compas_singular.datastructures.Mesh.vertices_attribute.rst │ │ ├── compas_singular.datastructures.Mesh.vertices_attributes.rst │ │ ├── compas_singular.datastructures.Mesh.vertices_on_boundaries.rst │ │ ├── compas_singular.datastructures.Mesh.vertices_on_boundary.rst │ │ ├── compas_singular.datastructures.Mesh.vertices_where.rst │ │ ├── compas_singular.datastructures.Mesh.vertices_where_predicate.rst │ │ ├── compas_singular.datastructures.Network.__init__.rst │ │ ├── compas_singular.datastructures.Network.add_edge.rst │ │ ├── compas_singular.datastructures.Network.add_node.rst │ │ ├── compas_singular.datastructures.Network.clear.rst │ │ ├── compas_singular.datastructures.Network.connected_edges.rst │ │ ├── compas_singular.datastructures.Network.copy.rst │ │ ├── compas_singular.datastructures.Network.degree.rst │ │ ├── compas_singular.datastructures.Network.degree_in.rst │ │ ├── compas_singular.datastructures.Network.degree_out.rst │ │ ├── compas_singular.datastructures.Network.delete_edge.rst │ │ ├── compas_singular.datastructures.Network.delete_node.rst │ │ ├── compas_singular.datastructures.Network.edge_attribute.rst │ │ ├── compas_singular.datastructures.Network.edge_attributes.rst │ │ ├── compas_singular.datastructures.Network.edge_coordinates.rst │ │ ├── compas_singular.datastructures.Network.edge_direction.rst │ │ ├── compas_singular.datastructures.Network.edge_length.rst │ │ ├── compas_singular.datastructures.Network.edge_midpoint.rst │ │ ├── compas_singular.datastructures.Network.edge_point.rst │ │ ├── compas_singular.datastructures.Network.edge_vector.rst │ │ ├── compas_singular.datastructures.Network.edges.rst │ │ ├── compas_singular.datastructures.Network.edges_attribute.rst │ │ ├── compas_singular.datastructures.Network.edges_attributes.rst │ │ ├── compas_singular.datastructures.Network.edges_where.rst │ │ ├── compas_singular.datastructures.Network.edges_where_predicate.rst │ │ ├── compas_singular.datastructures.Network.from_data.rst │ │ ├── compas_singular.datastructures.Network.from_edges.rst │ │ ├── compas_singular.datastructures.Network.from_json.rst │ │ ├── compas_singular.datastructures.Network.from_lines.rst │ │ ├── compas_singular.datastructures.Network.from_networkx.rst │ │ ├── compas_singular.datastructures.Network.from_nodes_and_edges.rst │ │ ├── compas_singular.datastructures.Network.from_obj.rst │ │ ├── compas_singular.datastructures.Network.get_any_edge.rst │ │ ├── compas_singular.datastructures.Network.get_any_edges.rst │ │ ├── compas_singular.datastructures.Network.get_any_node.rst │ │ ├── compas_singular.datastructures.Network.get_any_nodes.rst │ │ ├── compas_singular.datastructures.Network.gkey_key.rst │ │ ├── compas_singular.datastructures.Network.has_edge.rst │ │ ├── compas_singular.datastructures.Network.has_node.rst │ │ ├── compas_singular.datastructures.Network.index_key.rst │ │ ├── compas_singular.datastructures.Network.index_uv.rst │ │ ├── compas_singular.datastructures.Network.is_leaf.rst │ │ ├── compas_singular.datastructures.Network.is_node_connected.rst │ │ ├── compas_singular.datastructures.Network.key_gkey.rst │ │ ├── compas_singular.datastructures.Network.key_index.rst │ │ ├── compas_singular.datastructures.Network.leaves.rst │ │ ├── compas_singular.datastructures.Network.neighborhood.rst │ │ ├── compas_singular.datastructures.Network.neighbors.rst │ │ ├── compas_singular.datastructures.Network.neighbors_in.rst │ │ ├── compas_singular.datastructures.Network.neighbors_out.rst │ │ ├── compas_singular.datastructures.Network.node_attribute.rst │ │ ├── compas_singular.datastructures.Network.node_attributes.rst │ │ ├── compas_singular.datastructures.Network.node_coordinates.rst │ │ ├── compas_singular.datastructures.Network.node_laplacian.rst │ │ ├── compas_singular.datastructures.Network.node_neighborhood_centroid.rst │ │ ├── compas_singular.datastructures.Network.nodes.rst │ │ ├── compas_singular.datastructures.Network.nodes_attribute.rst │ │ ├── compas_singular.datastructures.Network.nodes_attributes.rst │ │ ├── compas_singular.datastructures.Network.nodes_where.rst │ │ ├── compas_singular.datastructures.Network.nodes_where_predicate.rst │ │ ├── compas_singular.datastructures.Network.number_of_edges.rst │ │ ├── compas_singular.datastructures.Network.number_of_nodes.rst │ │ ├── compas_singular.datastructures.Network.rst │ │ ├── compas_singular.datastructures.Network.split_edge.rst │ │ ├── compas_singular.datastructures.Network.summary.rst │ │ ├── compas_singular.datastructures.Network.to_data.rst │ │ ├── compas_singular.datastructures.Network.to_json.rst │ │ ├── compas_singular.datastructures.Network.to_lines.rst │ │ ├── compas_singular.datastructures.Network.to_networkx.rst │ │ ├── compas_singular.datastructures.Network.to_nodes_and_edges.rst │ │ ├── compas_singular.datastructures.Network.to_obj.rst │ │ ├── compas_singular.datastructures.Network.to_points.rst │ │ ├── compas_singular.datastructures.Network.unset_edge_attribute.rst │ │ ├── compas_singular.datastructures.Network.unset_node_attribute.rst │ │ ├── compas_singular.datastructures.Network.update_default_edge_attributes.rst │ │ ├── compas_singular.datastructures.Network.update_default_node_attributes.rst │ │ ├── compas_singular.datastructures.Network.uv_index.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.__init__.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.add_face.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.add_vertex.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.area.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.boundaries.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.boundary_kinks.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.bounding_box.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.bounding_box_xy.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.centroid.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.clear.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collapse_edge.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_polyedge.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_polyedges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_strip.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.collect_strips.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularities.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyedge_decomposition.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyedges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polyline_decomposition.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.compas_singularity_polylines.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.connected_components.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.copy.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.cull_vertices.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.cut.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_face.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_face_in_strips.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.delete_vertex.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.dual.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_coordinates.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_direction.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_length.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_midpoint.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_point.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_strip.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edge_vector.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_on_boundaries.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_on_boundary.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_where.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.edges_where_predicate.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.euler.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency_halfedge.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_adjacency_vertices.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_area.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_aspect_ratio.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_center.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_centroid.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_coordinates.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_corners.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_curvature.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_degree.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_flatness.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_halfedges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_max_degree.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_min_degree.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_neighborhood.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_neighbors.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_normal.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_opposite_edge.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_skewness.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_strips.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertex_ancestor.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertex_descendant.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.face_vertices.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_on_boundary.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_where.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.faces_where_predicate.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.flip_cycles.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_data.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_json.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_lines.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_obj.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_off.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_pickle.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_ply.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_points.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polygons.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polyhedron.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_polylines.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_shape.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_stl.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_face_poles.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.from_vertices_and_faces_with_poles.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.genus.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_face.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_face_vertex.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_vertex.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.get_any_vertices.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.gkey_key.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.halfedge_face.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_edge.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_face.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_halfedge.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_strip_poles.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.has_vertex.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.index_key.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.insert_vertex.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_boundary_vertex_kink.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_connected.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_edge_on_boundary.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_empty.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_face_on_boundary.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_face_pseudo_quad.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_manifold.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_orientable.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_pole.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_polyedge_closed.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_quadmesh.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_regular.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_strip_closed.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_trimesh.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_valid.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_compas_singular.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_connected.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_full_pole.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_on_boundary.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_partial_pole.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.is_vertex_pole.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.join.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.key_gkey.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.key_index.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.normal.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_edges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_strips.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.number_of_vertices.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.poles.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polyedge_graph.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polyedges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.polylines.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.smooth_area.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.smooth_centroid.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.split_edge.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.split_face.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_edge_midpoint_polyline.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_edges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_face_centroid_polyline.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_graph.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_side_polyedges.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strip_side_polylines.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.strips.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.substitute_vertex_in_strips.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.summary.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_data.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_json.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_lines.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_obj.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_off.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_pickle.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_ply.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_points.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_polygons.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_polylines.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_quadmesh.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_stl.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_trimesh.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.to_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.transform.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.transformed.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unify_cycles.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_edge_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_face_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.unset_vertex_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_edge_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_face_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.update_default_vertex_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_area.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_centroid.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_coordinates.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_curvature.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_degree.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_index.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_laplacian.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_max_degree.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_min_degree.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighborhood.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_neighbors.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_normal.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_opposite_vertex.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertex_pole_faces.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_attribute.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_attributes.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_on_boundaries.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_on_boundary.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_where.rst │ │ ├── compas_singular.datastructures.PseudoQuadMesh.vertices_where_predicate.rst │ │ ├── compas_singular.datastructures.QuadMesh.__init__.rst │ │ ├── compas_singular.datastructures.QuadMesh.add_face.rst │ │ ├── compas_singular.datastructures.QuadMesh.add_vertex.rst │ │ ├── compas_singular.datastructures.QuadMesh.area.rst │ │ ├── compas_singular.datastructures.QuadMesh.boundaries.rst │ │ ├── compas_singular.datastructures.QuadMesh.boundary_kinks.rst │ │ ├── compas_singular.datastructures.QuadMesh.bounding_box.rst │ │ ├── compas_singular.datastructures.QuadMesh.bounding_box_xy.rst │ │ ├── compas_singular.datastructures.QuadMesh.centroid.rst │ │ ├── compas_singular.datastructures.QuadMesh.clear.rst │ │ ├── compas_singular.datastructures.QuadMesh.collapse_edge.rst │ │ ├── compas_singular.datastructures.QuadMesh.collect_polyedge.rst │ │ ├── compas_singular.datastructures.QuadMesh.collect_polyedges.rst │ │ ├── compas_singular.datastructures.QuadMesh.collect_strip.rst │ │ ├── compas_singular.datastructures.QuadMesh.collect_strips.rst │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularities.rst │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyedge_decomposition.rst │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyedges.rst │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polyline_decomposition.rst │ │ ├── compas_singular.datastructures.QuadMesh.compas_singularity_polylines.rst │ │ ├── compas_singular.datastructures.QuadMesh.connected_components.rst │ │ ├── compas_singular.datastructures.QuadMesh.copy.rst │ │ ├── compas_singular.datastructures.QuadMesh.cull_vertices.rst │ │ ├── compas_singular.datastructures.QuadMesh.cut.rst │ │ ├── compas_singular.datastructures.QuadMesh.delete_face.rst │ │ ├── compas_singular.datastructures.QuadMesh.delete_face_in_strips.rst │ │ ├── compas_singular.datastructures.QuadMesh.delete_vertex.rst │ │ ├── compas_singular.datastructures.QuadMesh.dual.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_coordinates.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_direction.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_faces.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_length.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_midpoint.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_point.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_strip.rst │ │ ├── compas_singular.datastructures.QuadMesh.edge_vector.rst │ │ ├── compas_singular.datastructures.QuadMesh.edges.rst │ │ ├── compas_singular.datastructures.QuadMesh.edges_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.edges_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.edges_on_boundaries.rst │ │ ├── compas_singular.datastructures.QuadMesh.edges_on_boundary.rst │ │ ├── compas_singular.datastructures.QuadMesh.edges_where.rst │ │ ├── compas_singular.datastructures.QuadMesh.edges_where_predicate.rst │ │ ├── compas_singular.datastructures.QuadMesh.euler.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency_halfedge.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_adjacency_vertices.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_area.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_aspect_ratio.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_center.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_centroid.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_coordinates.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_corners.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_curvature.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_degree.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_flatness.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_halfedges.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_max_degree.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_min_degree.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_neighborhood.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_neighbors.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_normal.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_opposite_edge.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_skewness.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_strips.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_vertex_ancestor.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_vertex_descendant.rst │ │ ├── compas_singular.datastructures.QuadMesh.face_vertices.rst │ │ ├── compas_singular.datastructures.QuadMesh.faces.rst │ │ ├── compas_singular.datastructures.QuadMesh.faces_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.faces_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.faces_on_boundary.rst │ │ ├── compas_singular.datastructures.QuadMesh.faces_where.rst │ │ ├── compas_singular.datastructures.QuadMesh.faces_where_predicate.rst │ │ ├── compas_singular.datastructures.QuadMesh.flip_cycles.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_data.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_json.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_lines.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_obj.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_off.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_pickle.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_ply.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_points.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_polygons.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_polyhedron.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_polylines.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_shape.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_stl.rst │ │ ├── compas_singular.datastructures.QuadMesh.from_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.QuadMesh.genus.rst │ │ ├── compas_singular.datastructures.QuadMesh.get_any_face.rst │ │ ├── compas_singular.datastructures.QuadMesh.get_any_face_vertex.rst │ │ ├── compas_singular.datastructures.QuadMesh.get_any_vertex.rst │ │ ├── compas_singular.datastructures.QuadMesh.get_any_vertices.rst │ │ ├── compas_singular.datastructures.QuadMesh.gkey_key.rst │ │ ├── compas_singular.datastructures.QuadMesh.halfedge_face.rst │ │ ├── compas_singular.datastructures.QuadMesh.has_edge.rst │ │ ├── compas_singular.datastructures.QuadMesh.has_face.rst │ │ ├── compas_singular.datastructures.QuadMesh.has_halfedge.rst │ │ ├── compas_singular.datastructures.QuadMesh.has_vertex.rst │ │ ├── compas_singular.datastructures.QuadMesh.index_key.rst │ │ ├── compas_singular.datastructures.QuadMesh.insert_vertex.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_boundary_vertex_kink.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_connected.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_edge_on_boundary.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_empty.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_face_on_boundary.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_manifold.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_orientable.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_polyedge_closed.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_quadmesh.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_regular.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_strip_closed.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_trimesh.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_valid.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_compas_singular.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_connected.rst │ │ ├── compas_singular.datastructures.QuadMesh.is_vertex_on_boundary.rst │ │ ├── compas_singular.datastructures.QuadMesh.join.rst │ │ ├── compas_singular.datastructures.QuadMesh.key_gkey.rst │ │ ├── compas_singular.datastructures.QuadMesh.key_index.rst │ │ ├── compas_singular.datastructures.QuadMesh.normal.rst │ │ ├── compas_singular.datastructures.QuadMesh.number_of_edges.rst │ │ ├── compas_singular.datastructures.QuadMesh.number_of_faces.rst │ │ ├── compas_singular.datastructures.QuadMesh.number_of_strips.rst │ │ ├── compas_singular.datastructures.QuadMesh.number_of_vertices.rst │ │ ├── compas_singular.datastructures.QuadMesh.polyedge_graph.rst │ │ ├── compas_singular.datastructures.QuadMesh.polyedges.rst │ │ ├── compas_singular.datastructures.QuadMesh.polylines.rst │ │ ├── compas_singular.datastructures.QuadMesh.rst │ │ ├── compas_singular.datastructures.QuadMesh.smooth_area.rst │ │ ├── compas_singular.datastructures.QuadMesh.smooth_centroid.rst │ │ ├── compas_singular.datastructures.QuadMesh.split_edge.rst │ │ ├── compas_singular.datastructures.QuadMesh.split_face.rst │ │ ├── compas_singular.datastructures.QuadMesh.strip_edge_midpoint_polyline.rst │ │ ├── compas_singular.datastructures.QuadMesh.strip_edges.rst │ │ ├── compas_singular.datastructures.QuadMesh.strip_face_centroid_polyline.rst │ │ ├── compas_singular.datastructures.QuadMesh.strip_faces.rst │ │ ├── compas_singular.datastructures.QuadMesh.strip_graph.rst │ │ ├── compas_singular.datastructures.QuadMesh.strip_side_polyedges.rst │ │ ├── compas_singular.datastructures.QuadMesh.strip_side_polylines.rst │ │ ├── compas_singular.datastructures.QuadMesh.strips.rst │ │ ├── compas_singular.datastructures.QuadMesh.substitute_vertex_in_strips.rst │ │ ├── compas_singular.datastructures.QuadMesh.summary.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_data.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_json.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_lines.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_obj.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_off.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_pickle.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_ply.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_points.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_polygons.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_polylines.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_quadmesh.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_stl.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_trimesh.rst │ │ ├── compas_singular.datastructures.QuadMesh.to_vertices_and_faces.rst │ │ ├── compas_singular.datastructures.QuadMesh.transform.rst │ │ ├── compas_singular.datastructures.QuadMesh.transformed.rst │ │ ├── compas_singular.datastructures.QuadMesh.unify_cycles.rst │ │ ├── compas_singular.datastructures.QuadMesh.unset_edge_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.unset_face_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.unset_vertex_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.update_default_edge_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.update_default_face_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.update_default_vertex_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_area.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_centroid.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_coordinates.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_curvature.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_degree.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_faces.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_index.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_laplacian.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_max_degree.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_min_degree.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighborhood.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighborhood_centroid.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_neighbors.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_normal.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertex_opposite_vertex.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertices.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertices_attribute.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertices_attributes.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertices_on_boundaries.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertices_on_boundary.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertices_where.rst │ │ ├── compas_singular.datastructures.QuadMesh.vertices_where_predicate.rst │ │ ├── compas_singular.datastructures.add_and_delete_strips.rst │ │ ├── compas_singular.datastructures.add_handle.rst │ │ ├── compas_singular.datastructures.add_opening.rst │ │ ├── compas_singular.datastructures.add_strip.rst │ │ ├── compas_singular.datastructures.add_strips.rst │ │ ├── compas_singular.datastructures.automated_smoothing_constraints.rst │ │ ├── compas_singular.datastructures.automated_smoothing_surface_constraints.rst │ │ ├── compas_singular.datastructures.collateral_strip_deletions.rst │ │ ├── compas_singular.datastructures.constrained_smoothing.rst │ │ ├── compas_singular.datastructures.customized_smoothing_constraints.rst │ │ ├── compas_singular.datastructures.delete_strip.rst │ │ ├── compas_singular.datastructures.delete_strips.rst │ │ ├── compas_singular.datastructures.dense_quad_mesh_polyedge_2_coloring.rst │ │ ├── compas_singular.datastructures.display_smoothing_constraints.rst │ │ ├── compas_singular.datastructures.fold.rst │ │ ├── compas_singular.datastructures.fold_vertex_group.rst │ │ ├── compas_singular.datastructures.merge_pseudo_quads_in_quad.rst │ │ ├── compas_singular.datastructures.mesh_face_2_coloring.rst │ │ ├── compas_singular.datastructures.mesh_face_n_coloring.rst │ │ ├── compas_singular.datastructures.mesh_move_by.rst │ │ ├── compas_singular.datastructures.mesh_move_vertex_by.rst │ │ ├── compas_singular.datastructures.mesh_move_vertex_to.rst │ │ ├── compas_singular.datastructures.mesh_move_vertices_by.rst │ │ ├── compas_singular.datastructures.mesh_move_vertices_to.rst │ │ ├── compas_singular.datastructures.mesh_vertex_2_coloring.rst │ │ ├── compas_singular.datastructures.mesh_vertex_n_coloring.rst │ │ ├── compas_singular.datastructures.quad_mesh_polyedge_2_coloring.rst │ │ ├── compas_singular.datastructures.quad_mesh_polyedge_n_coloring.rst │ │ ├── compas_singular.datastructures.quad_mesh_strip_2_coloring.rst │ │ ├── compas_singular.datastructures.quad_mesh_strip_n_coloring.rst │ │ ├── compas_singular.datastructures.split_quad_in_pseudo_quads.rst │ │ ├── compas_singular.datastructures.split_strip.rst │ │ ├── compas_singular.datastructures.split_strips.rst │ │ ├── compas_singular.datastructures.strip_polyedge_update.rst │ │ ├── compas_singular.datastructures.strips_to_split_to_prevent_boundary_collapse.rst │ │ ├── compas_singular.datastructures.surface_constrained_smoothing.rst │ │ ├── compas_singular.datastructures.total_boundary_deletions.rst │ │ ├── compas_singular.geometry.Polyline.__init__.rst │ │ ├── compas_singular.geometry.Polyline.copy.rst │ │ ├── compas_singular.geometry.Polyline.from_data.rst │ │ ├── compas_singular.geometry.Polyline.is_closed.rst │ │ ├── compas_singular.geometry.Polyline.is_selfintersecting.rst │ │ ├── compas_singular.geometry.Polyline.point.rst │ │ ├── compas_singular.geometry.Polyline.rst │ │ ├── compas_singular.geometry.Polyline.to_data.rst │ │ ├── compas_singular.geometry.Polyline.transform.rst │ │ ├── compas_singular.geometry.Polyline.transformed.rst │ │ ├── compas_singular.geometry.Polyline.vertex_curvature.rst │ │ ├── compas_singular.geometry.circular_array.rst │ │ ├── compas_singular.geometry.closest_point_on_circle.rst │ │ ├── compas_singular.geometry.closest_point_on_line.rst │ │ ├── compas_singular.geometry.closest_point_on_polyline.rst │ │ ├── compas_singular.geometry.closest_point_on_polylines.rst │ │ ├── compas_singular.geometry.closest_point_on_segment.rst │ │ ├── compas_singular.geometry.line_array.rst │ │ ├── compas_singular.geometry.rectangular_array.rst │ │ ├── compas_singular.geometry.spiral_array.rst │ │ ├── compas_singular.rhino.RhinoCurve.__init__.rst │ │ ├── compas_singular.rhino.RhinoCurve.closest_point.rst │ │ ├── compas_singular.rhino.RhinoCurve.closest_points.rst │ │ ├── compas_singular.rhino.RhinoCurve.divide.rst │ │ ├── compas_singular.rhino.RhinoCurve.divide_length.rst │ │ ├── compas_singular.rhino.RhinoCurve.from_geometry.rst │ │ ├── compas_singular.rhino.RhinoCurve.from_guid.rst │ │ ├── compas_singular.rhino.RhinoCurve.from_object.rst │ │ ├── compas_singular.rhino.RhinoCurve.from_selection.rst │ │ ├── compas_singular.rhino.RhinoCurve.is_circle.rst │ │ ├── compas_singular.rhino.RhinoCurve.is_closed.rst │ │ ├── compas_singular.rhino.RhinoCurve.is_line.rst │ │ ├── compas_singular.rhino.RhinoCurve.is_nurbs.rst │ │ ├── compas_singular.rhino.RhinoCurve.is_polygon.rst │ │ ├── compas_singular.rhino.RhinoCurve.is_polyline.rst │ │ ├── compas_singular.rhino.RhinoCurve.length.rst │ │ ├── compas_singular.rhino.RhinoCurve.rst │ │ ├── compas_singular.rhino.RhinoCurve.space.rst │ │ ├── compas_singular.rhino.RhinoCurve.tangents.rst │ │ ├── compas_singular.rhino.RhinoCurve.to_compas.rst │ │ ├── compas_singular.rhino.RhinoCurve.transform.rst │ │ ├── compas_singular.rhino.RhinoSurface.__init__.rst │ │ ├── compas_singular.rhino.RhinoSurface.borders.rst │ │ ├── compas_singular.rhino.RhinoSurface.brep_to_compas.rst │ │ ├── compas_singular.rhino.RhinoSurface.closest_point.rst │ │ ├── compas_singular.rhino.RhinoSurface.closest_point_on_boundaries.rst │ │ ├── compas_singular.rhino.RhinoSurface.closest_points.rst │ │ ├── compas_singular.rhino.RhinoSurface.closest_points_on_boundaries.rst │ │ ├── compas_singular.rhino.RhinoSurface.from_geometry.rst │ │ ├── compas_singular.rhino.RhinoSurface.from_guid.rst │ │ ├── compas_singular.rhino.RhinoSurface.from_object.rst │ │ ├── compas_singular.rhino.RhinoSurface.from_selection.rst │ │ ├── compas_singular.rhino.RhinoSurface.heightfield.rst │ │ ├── compas_singular.rhino.RhinoSurface.heightfield_to_compas.rst │ │ ├── compas_singular.rhino.RhinoSurface.kinks.rst │ │ ├── compas_singular.rhino.RhinoSurface.line_uv_to_xyz.rst │ │ ├── compas_singular.rhino.RhinoSurface.mesh_uv_to_xyz.rst │ │ ├── compas_singular.rhino.RhinoSurface.point_uv_to_xyz.rst │ │ ├── compas_singular.rhino.RhinoSurface.point_xyz_to_uv.rst │ │ ├── compas_singular.rhino.RhinoSurface.polyline_uv_to_xyz.rst │ │ ├── compas_singular.rhino.RhinoSurface.rst │ │ ├── compas_singular.rhino.RhinoSurface.space.rst │ │ ├── compas_singular.rhino.RhinoSurface.to_compas.rst │ │ ├── compas_singular.rhino.RhinoSurface.transform.rst │ │ ├── compas_singular.rhino.RhinoSurface.uv_to_compas.rst │ │ ├── compas_singular.rhino.draw_graph.rst │ │ ├── compas_singular.rhino.select_mesh_polyedge.rst │ │ ├── compas_singular.rhino.select_quad_mesh_polyedge.rst │ │ ├── compas_singular.rhino.select_quad_mesh_strip.rst │ │ ├── compas_singular.topology.is_adjacency_two_colorable.rst │ │ ├── compas_singular.utilities.are_items_in_list.rst │ │ ├── compas_singular.utilities.common_items.rst │ │ ├── compas_singular.utilities.extract_pareto_indices.rst │ │ ├── compas_singular.utilities.is_dominating.rst │ │ ├── compas_singular.utilities.list_split.rst │ │ ├── compas_singular.utilities.remove_isomorphism_in_integer_list.rst │ │ └── compas_singular.utilities.sublist_from_to_items_in_closed_list.rst ├── conf.py ├── examples │ ├── 00_densification.rst │ └── 01_decomposition.rst └── index.rst ├── examples ├── 00_densification.py ├── 01_densification_poles.py ├── 02_decomposition_discrete_planar.py ├── 03_decomposition_continuous_curved.py ├── 04_lizard.py ├── PLACEHOLDER ├── blank.rst ├── data │ ├── 01_decomposition.3dm │ ├── 01_decomposition.json │ ├── PLACEHOLDER │ ├── coarse_quad_mesh_british_museum.json │ └── coarse_quad_mesh_british_museum_poles.json └── grasshopper │ ├── examples │ ├── 01_quad_mesh_data.gh │ ├── 02_quad_mesh_densification_and_patterning.gh │ ├── 03_surface_quad_meshing.gh │ └── 04_quad_mesh_topological_edit.gh │ └── user_objects │ ├── Add quad-mesh strips.ghuser │ ├── Boundary elements.ghuser │ ├── Coarsen quad mesh.ghuser │ ├── Collect edge elements.ghuser │ ├── Constrained Laplacian smoothing.ghuser │ ├── Conway operator.ghuser │ ├── Delete quad-mesh strips.ghuser │ ├── Densify quad mesh.ghuser │ ├── Edit quad mesh strip topology.ghuser │ ├── Mesh edges.ghuser │ ├── Mesh faces.ghuser │ ├── Mesh vertices.ghuser │ ├── Move vertices.ghuser │ ├── Quad mesh polyedges.ghuser │ ├── Quad mesh singularities.ghuser │ ├── Quad mesh strips.ghuser │ ├── Quad mesh.ghuser │ ├── Surface quad decomposition.ghuser │ ├── Surface topological skeleton.ghuser │ ├── from Rhino mesh.ghuser │ └── to Rhino mesh.ghuser ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── scripts └── PLACEHOLDER ├── setup.cfg ├── setup.py ├── src └── compas_singular │ ├── __init__.py │ ├── algorithms │ ├── __init__.py │ ├── decomposition.py │ ├── isomorphism.py │ ├── layout.py │ ├── mapping.py │ ├── propagation.py │ ├── triangulation.py │ └── twocoloring.py │ ├── datastructures │ ├── __init__.py │ ├── lizard │ │ ├── __init__.py │ │ └── lizard.py │ ├── mesh │ │ ├── __init__.py │ │ ├── coloring.py │ │ ├── mesh.py │ │ └── operations.py │ ├── mesh_quad │ │ ├── __init__.py │ │ ├── coloring.py │ │ ├── grammar │ │ │ ├── __init__.py │ │ │ ├── add_strip.py │ │ │ └── delete_strip.py │ │ ├── grammar_pattern.py │ │ ├── grammar_shape.py │ │ ├── mesh_quad.py │ │ └── morphing.py │ ├── mesh_quad_coarse │ │ ├── __init__.py │ │ ├── coloring.py │ │ └── mesh_quad_coarse.py │ ├── mesh_quad_pseudo │ │ ├── __init__.py │ │ ├── grammar_poles.py │ │ └── mesh_quad_pseudo.py │ ├── mesh_quad_pseudo_coarse │ │ ├── __init__.py │ │ └── mesh_quad_pseudo_coarse.py │ ├── network │ │ ├── __init__.py │ │ └── network.py │ └── skeleton │ │ ├── __init__.py │ │ └── skeleton.py │ ├── geometry │ ├── __init__.py │ ├── array.py │ ├── polyline.py │ └── projection.py │ ├── rhino │ ├── __init__.py │ ├── __temp │ │ ├── display.py │ │ ├── helpers │ │ │ ├── __init__.py │ │ │ ├── density.py │ │ │ ├── getters.py │ │ │ └── pattern.py │ │ └── output.py │ ├── artists │ │ ├── __init__.py │ │ ├── __temp │ │ │ └── draw.py │ │ ├── decompositionartist.py │ │ ├── patternartist.py │ │ ├── quadmeshartist.py │ │ └── skeletonartist.py │ ├── constraints │ │ ├── __init__.py │ │ ├── constraints.py │ │ └── relaxation.py │ ├── geometry │ │ ├── __init__.py │ │ ├── curve.py │ │ └── surface.py │ ├── grasshopper.py │ └── objects │ │ └── __init__.py │ ├── topology │ ├── __init__.py │ └── coloring.py │ └── utilities │ ├── __init__.py │ ├── lists.py │ └── pareto.py ├── tasks.py ├── temp └── PLACEHOLDER └── tests ├── PLACEHOLDER └── test_import.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/README.md -------------------------------------------------------------------------------- /data/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | # container for sample data files 2 | -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.doctrees/00_introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/00_introduction.doctree -------------------------------------------------------------------------------- /docs/.doctrees/01_getting_started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/01_getting_started.doctree -------------------------------------------------------------------------------- /docs/.doctrees/02_overview.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/02_overview.doctree -------------------------------------------------------------------------------- /docs/.doctrees/03_examples.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/03_examples.doctree -------------------------------------------------------------------------------- /docs/.doctrees/04_api.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/04_api.doctree -------------------------------------------------------------------------------- /docs/.doctrees/05_license.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/05_license.doctree -------------------------------------------------------------------------------- /docs/.doctrees/06_citing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/06_citing.doctree -------------------------------------------------------------------------------- /docs/.doctrees/07_publications.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/07_publications.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/compas_singular.algorithms.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/compas_singular.algorithms.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/compas_singular.datastructures.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/compas_singular.datastructures.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/compas_singular.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/compas_singular.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/compas_singular.geometry.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/compas_singular.geometry.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/compas_singular.rhino.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/compas_singular.rhino.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/compas_singular.topology.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/compas_singular.topology.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/compas_singular.utilities.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/compas_singular.utilities.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.algorithms.Skeleton.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.algorithms.Skeleton.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.datastructures.Mesh.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.datastructures.Mesh.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.datastructures.fold.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.datastructures.fold.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.geometry.Polyline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.geometry.Polyline.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.geometry.line_array.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.geometry.line_array.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.rhino.RhinoCurve.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.rhino.RhinoCurve.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.rhino.RhinoSurface.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.rhino.RhinoSurface.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/compas_singular.rhino.draw_graph.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/compas_singular.rhino.draw_graph.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.area.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.area.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.clear.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.clear.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.copy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.copy.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.dual.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.dual.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.edges.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.edges.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.euler.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.euler.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.faces.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.faces.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.genus.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.genus.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.lines.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.lines.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.normal.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.normal.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_obj.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_obj.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_off.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_off.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_ply.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_ply.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_stl.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.algorithms.Skeleton.to_stl.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.area.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.area.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.clear.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.clear.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.copy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.copy.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.dual.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.dual.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.edges.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.edges.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.euler.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.euler.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.faces.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.faces.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.genus.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.genus.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.normal.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.normal.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.to_obj.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.to_obj.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.to_off.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.to_off.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.to_ply.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.to_ply.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Mesh.to_stl.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Mesh.to_stl.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.Network.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.Network.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.QuadMesh.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.QuadMesh.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.add_handle.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.add_handle.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.add_opening.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.add_opening.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.add_strip.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.add_strip.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.add_strips.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.add_strips.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.fold.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.fold.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.datastructures.split_strip.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.datastructures.split_strip.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.Polyline.__init__.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.Polyline.__init__.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.Polyline.copy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.Polyline.copy.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.Polyline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.Polyline.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.Polyline.point.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.Polyline.point.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.Polyline.to_data.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.Polyline.to_data.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.circular_array.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.circular_array.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.line_array.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.line_array.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.rectangular_array.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.rectangular_array.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.geometry.spiral_array.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.geometry.spiral_array.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.__init__.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.__init__.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.divide.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.divide.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.from_guid.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.from_guid.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_circle.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_circle.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_closed.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_closed.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_line.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_line.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_nurbs.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.is_nurbs.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.length.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.length.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.space.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.space.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.tangents.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.tangents.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.to_compas.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.to_compas.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoCurve.transform.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoCurve.transform.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoSurface.borders.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoSurface.borders.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoSurface.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoSurface.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoSurface.kinks.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoSurface.kinks.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.RhinoSurface.space.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.RhinoSurface.space.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.draw_graph.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.draw_graph.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.rhino.select_mesh_polyedge.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.rhino.select_mesh_polyedge.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.utilities.common_items.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.utilities.common_items.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.utilities.is_dominating.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.utilities.is_dominating.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/generated/singular.utilities.list_split.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/generated/singular.utilities.list_split.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/singular.algorithms.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/singular.algorithms.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/singular.datastructures.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/singular.datastructures.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/singular.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/singular.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/singular.geometry.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/singular.geometry.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/singular.rhino.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/singular.rhino.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/singular.topology.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/singular.topology.doctree -------------------------------------------------------------------------------- /docs/.doctrees/api/singular.utilities.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/api/singular.utilities.doctree -------------------------------------------------------------------------------- /docs/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/.doctrees/examples/00_densification.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/examples/00_densification.doctree -------------------------------------------------------------------------------- /docs/.doctrees/examples/01_decomposition.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/examples/01_decomposition.doctree -------------------------------------------------------------------------------- /docs/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/00_introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/00_introduction.html -------------------------------------------------------------------------------- /docs/01_getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/01_getting_started.html -------------------------------------------------------------------------------- /docs/02_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/02_overview.html -------------------------------------------------------------------------------- /docs/03_examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/03_examples.html -------------------------------------------------------------------------------- /docs/04_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/04_api.html -------------------------------------------------------------------------------- /docs/05_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/05_license.html -------------------------------------------------------------------------------- /docs/06_citing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/06_citing.html -------------------------------------------------------------------------------- /docs/07_publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/07_publications.html -------------------------------------------------------------------------------- /docs/PLACEHOLDER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/PLACEHOLDER -------------------------------------------------------------------------------- /docs/_images/00_densification_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/00_densification_0.png -------------------------------------------------------------------------------- /docs/_images/00_densification_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/00_densification_1.png -------------------------------------------------------------------------------- /docs/_images/00_densification_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/00_densification_2.png -------------------------------------------------------------------------------- /docs/_images/00_densification_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/00_densification_3.png -------------------------------------------------------------------------------- /docs/_images/00_densification_poles_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/00_densification_poles_0.png -------------------------------------------------------------------------------- /docs/_images/00_densification_poles_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/00_densification_poles_1.png -------------------------------------------------------------------------------- /docs/_images/01_decomposition_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/01_decomposition_1.png -------------------------------------------------------------------------------- /docs/_images/01_decomposition_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/01_decomposition_2.png -------------------------------------------------------------------------------- /docs/_images/01_decomposition_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/01_decomposition_3.png -------------------------------------------------------------------------------- /docs/_images/01_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/01_front.jpg -------------------------------------------------------------------------------- /docs/_images/compas_singular-algorithms-Skeleton-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/compas_singular-algorithms-Skeleton-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/compas_singular-algorithms-Skeleton-smooth_centroid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/compas_singular-algorithms-Skeleton-smooth_centroid-1.png -------------------------------------------------------------------------------- /docs/_images/compas_singular-datastructures-Mesh-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/compas_singular-datastructures-Mesh-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/compas_singular-datastructures-Mesh-smooth_centroid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/compas_singular-datastructures-Mesh-smooth_centroid-1.png -------------------------------------------------------------------------------- /docs/_images/compas_singular-datastructures-QuadMesh-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/compas_singular-datastructures-QuadMesh-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-algorithms-DecompositionRemap-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-algorithms-DecompositionRemap-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-algorithms-Skeleton-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-algorithms-Skeleton-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-algorithms-Skeleton-smooth_centroid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-algorithms-Skeleton-smooth_centroid-1.png -------------------------------------------------------------------------------- /docs/_images/singular-algorithms-SkeletonDecomposition-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-algorithms-SkeletonDecomposition-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-datastructures-CoarseQuadMesh-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-datastructures-CoarseQuadMesh-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-datastructures-Mesh-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-datastructures-Mesh-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-datastructures-Mesh-smooth_centroid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-datastructures-Mesh-smooth_centroid-1.png -------------------------------------------------------------------------------- /docs/_images/singular-datastructures-PseudoQuadMesh-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-datastructures-PseudoQuadMesh-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-datastructures-QuadMesh-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-datastructures-QuadMesh-smooth_area-1.png -------------------------------------------------------------------------------- /docs/_images/singular-datastructures-QuadMesh-smooth_centroid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_images/singular-datastructures-QuadMesh-smooth_centroid-1.png -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/compas-reference.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/css/compas-reference.css -------------------------------------------------------------------------------- /docs/_static/css/compas-reference.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/css/compas-reference.css.map -------------------------------------------------------------------------------- /docs/_static/css/compas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/css/compas.css -------------------------------------------------------------------------------- /docs/_static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/css/prism.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/images/compas.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/images/compas.ico -------------------------------------------------------------------------------- /docs/_static/images/compas_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/images/compas_icon.png -------------------------------------------------------------------------------- /docs/_static/images/compas_icon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/images/compas_icon_white.png -------------------------------------------------------------------------------- /docs/_static/images/compas_white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/images/compas_white.ico -------------------------------------------------------------------------------- /docs/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/js/bootstrap.js -------------------------------------------------------------------------------- /docs/_static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/js/prism.js -------------------------------------------------------------------------------- /docs/_static/js/searchtools_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/js/searchtools_.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/api/compas_singular.algorithms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/compas_singular.algorithms.html -------------------------------------------------------------------------------- /docs/api/compas_singular.datastructures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/compas_singular.datastructures.html -------------------------------------------------------------------------------- /docs/api/compas_singular.geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/compas_singular.geometry.html -------------------------------------------------------------------------------- /docs/api/compas_singular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/compas_singular.html -------------------------------------------------------------------------------- /docs/api/compas_singular.rhino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/compas_singular.rhino.html -------------------------------------------------------------------------------- /docs/api/compas_singular.topology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/compas_singular.topology.html -------------------------------------------------------------------------------- /docs/api/compas_singular.utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/compas_singular.utilities.html -------------------------------------------------------------------------------- /docs/api/examples/00_densification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/examples/00_densification.rst -------------------------------------------------------------------------------- /docs/api/examples/01_decomposition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/examples/01_decomposition.rst -------------------------------------------------------------------------------- /docs/api/generated/compas_singular-algorithms-Skeleton-smooth_area-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular-algorithms-Skeleton-smooth_area-1.pdf -------------------------------------------------------------------------------- /docs/api/generated/compas_singular-algorithms-Skeleton-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular-algorithms-Skeleton-smooth_area-1.png -------------------------------------------------------------------------------- /docs/api/generated/compas_singular-algorithms-Skeleton-smooth_area-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular-algorithms-Skeleton-smooth_area-1.py -------------------------------------------------------------------------------- /docs/api/generated/compas_singular-datastructures-Mesh-smooth_area-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular-datastructures-Mesh-smooth_area-1.pdf -------------------------------------------------------------------------------- /docs/api/generated/compas_singular-datastructures-Mesh-smooth_area-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular-datastructures-Mesh-smooth_area-1.png -------------------------------------------------------------------------------- /docs/api/generated/compas_singular-datastructures-Mesh-smooth_area-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular-datastructures-Mesh-smooth_area-1.py -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.DecompositionRemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.DecompositionRemap.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.__init__.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.add_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.add_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.add_vertex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.add_vertex.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.boundaries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.boundaries.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.bounding_box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.bounding_box.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.branches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.branches.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.centroid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.centroid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.clear.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.copy.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.cut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.cut.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.delete_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.delete_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.dual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.dual.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.edge_faces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.edge_faces.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.edge_length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.edge_length.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.edge_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.edge_point.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.edge_vector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.edge_vector.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.edges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.edges.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.edges_where.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.edges_where.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.euler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.euler.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.face_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.face_area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.face_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.face_center.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.face_corners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.face_corners.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.face_degree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.face_degree.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.face_normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.face_normal.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.faces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.faces.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.faces_where.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.faces_where.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.flip_cycles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.flip_cycles.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_json.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_lines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_mesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_mesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_off.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_pickle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_pickle.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_ply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_ply.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_points.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_shape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_shape.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.from_stl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.from_stl.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.genus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.genus.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.get_any_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.get_any_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.gkey_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.gkey_key.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.has_edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.has_edge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.has_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.has_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.has_halfedge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.has_halfedge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.has_vertex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.has_vertex.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.index_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.index_key.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.is_connected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.is_connected.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.is_empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.is_empty.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.is_manifold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.is_manifold.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.is_quadmesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.is_quadmesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.is_regular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.is_regular.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.is_trimesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.is_trimesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.is_valid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.is_valid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.join.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.key_gkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.key_gkey.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.key_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.key_index.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.lines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.normal.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.smooth_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.smooth_area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.split_edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.split_edge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.split_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.split_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.summary.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_json.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_lines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_off.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_pickle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_pickle.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_ply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_ply.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_points.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_polygons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_polygons.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_polylines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_polylines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_quadmesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_quadmesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_stl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_stl.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.to_trimesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.to_trimesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.transform.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.transformed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.transformed.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.unify_cycles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.unify_cycles.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.vertex_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.vertex_area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.vertex_faces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.vertex_faces.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.Skeleton.vertices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.Skeleton.vertices.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.algorithms.SkeletonDecomposition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.algorithms.SkeletonDecomposition.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.CoarseQuadMesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.CoarseQuadMesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.__init__.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.add_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.add_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.add_vertex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.add_vertex.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.boundaries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.boundaries.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.bounding_box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.bounding_box.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.centroid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.centroid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.clear.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.copy.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.cut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.cut.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.delete_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.delete_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.dual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.dual.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.edge_faces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.edge_faces.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.edge_length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.edge_length.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.edge_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.edge_point.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.edge_vector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.edge_vector.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.edges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.edges.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.edges_where.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.edges_where.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.euler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.euler.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.face_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.face_area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.face_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.face_center.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.face_corners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.face_corners.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.face_degree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.face_degree.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.face_normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.face_normal.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.faces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.faces.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.faces_where.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.faces_where.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.flip_cycles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.flip_cycles.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_json.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_lines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_off.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_pickle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_pickle.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_ply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_ply.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_points.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_shape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_shape.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.from_stl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.from_stl.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.genus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.genus.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.get_any_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.get_any_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.gkey_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.gkey_key.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.has_edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.has_edge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.has_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.has_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.has_halfedge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.has_halfedge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.has_vertex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.has_vertex.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.index_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.index_key.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.is_connected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.is_connected.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.is_empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.is_empty.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.is_manifold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.is_manifold.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.is_quadmesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.is_quadmesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.is_regular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.is_regular.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.is_trimesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.is_trimesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.is_valid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.is_valid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.join.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.key_gkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.key_gkey.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.key_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.key_index.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.normal.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.smooth_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.smooth_area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.split_edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.split_edge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.split_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.split_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.summary.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_json.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_lines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_off.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_pickle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_pickle.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_ply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_ply.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_points.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_polygons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_polygons.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_polylines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_polylines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_quadmesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_quadmesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_stl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_stl.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.to_trimesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.to_trimesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.transform.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.transformed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.transformed.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.unify_cycles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.unify_cycles.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.vertex_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.vertex_area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.vertex_faces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.vertex_faces.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Mesh.vertices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Mesh.vertices.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.__init__.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.add_edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.add_edge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.add_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.add_node.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.clear.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.copy.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.degree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.degree.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.degree_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.degree_in.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.edges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.edges.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.from_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.from_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.from_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.from_json.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.from_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.from_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.gkey_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.gkey_key.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.has_edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.has_edge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.has_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.has_node.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.index_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.index_key.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.index_uv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.index_uv.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.is_leaf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.is_leaf.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.key_gkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.key_gkey.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.key_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.key_index.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.leaves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.leaves.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.neighbors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.neighbors.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.nodes.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.summary.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.to_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.to_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.to_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.to_json.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.to_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.to_lines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.to_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.to_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.to_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.to_points.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.Network.uv_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.Network.uv_index.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.PseudoQuadMesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.PseudoQuadMesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.__init__.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.add_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.add_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.area.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.centroid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.centroid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.clear.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.copy.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.cut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.cut.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.dual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.dual.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.edges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.edges.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.euler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.euler.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.faces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.faces.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.from_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.from_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.from_off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.from_off.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.from_ply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.from_ply.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.from_stl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.from_stl.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.genus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.genus.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.gkey_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.gkey_key.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.has_edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.has_edge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.has_face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.has_face.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.is_empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.is_empty.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.is_valid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.is_valid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.join.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.key_gkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.key_gkey.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.normal.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.strips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.strips.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.summary.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.to_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.to_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.to_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.to_json.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.to_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.to_lines.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.to_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.to_obj.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.to_off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.to_off.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.to_ply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.to_ply.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.to_stl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.to_stl.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.QuadMesh.vertices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.QuadMesh.vertices.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.add_handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.add_handle.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.add_opening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.add_opening.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.add_strip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.add_strip.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.add_strips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.add_strips.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.delete_strip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.delete_strip.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.delete_strips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.delete_strips.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.fold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.fold.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.fold_vertex_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.fold_vertex_group.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.mesh_move_by.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.mesh_move_by.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.split_strip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.split_strip.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.datastructures.split_strips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.datastructures.split_strips.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.__init__.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.copy.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.from_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.from_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.is_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.is_closed.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.point.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.to_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.to_data.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.transform.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.Polyline.transformed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.Polyline.transformed.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.circular_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.circular_array.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.closest_point_on_circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.closest_point_on_circle.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.closest_point_on_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.closest_point_on_line.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.line_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.line_array.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.rectangular_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.rectangular_array.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.geometry.spiral_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.geometry.spiral_array.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.__init__.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.closest_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.closest_point.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.closest_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.closest_points.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.divide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.divide.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.divide_length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.divide_length.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.from_geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.from_geometry.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.from_guid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.from_guid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.from_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.from_object.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.from_selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.from_selection.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.is_circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.is_circle.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.is_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.is_closed.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.is_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.is_line.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.is_nurbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.is_nurbs.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.is_polygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.is_polygon.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.is_polyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.is_polyline.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.length.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.space.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.tangents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.tangents.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.to_compas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.to_compas.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoCurve.transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoCurve.transform.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.__init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.__init__.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.borders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.borders.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.closest_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.closest_point.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.from_geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.from_geometry.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.from_guid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.from_guid.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.from_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.from_object.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.heightfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.heightfield.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.kinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.kinks.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.space.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.to_compas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.to_compas.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.transform.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.RhinoSurface.uv_to_compas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.RhinoSurface.uv_to_compas.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.draw_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.draw_graph.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.select_mesh_polyedge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.select_mesh_polyedge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.select_quad_mesh_polyedge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.select_quad_mesh_polyedge.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.rhino.select_quad_mesh_strip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.rhino.select_quad_mesh_strip.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.utilities.are_items_in_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.utilities.are_items_in_list.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.utilities.common_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.utilities.common_items.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.utilities.extract_pareto_indices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.utilities.extract_pareto_indices.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.utilities.is_dominating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.utilities.is_dominating.html -------------------------------------------------------------------------------- /docs/api/generated/compas_singular.utilities.list_split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/generated/compas_singular.utilities.list_split.html -------------------------------------------------------------------------------- /docs/api/singular.algorithms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/singular.algorithms.html -------------------------------------------------------------------------------- /docs/api/singular.datastructures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/singular.datastructures.html -------------------------------------------------------------------------------- /docs/api/singular.geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/singular.geometry.html -------------------------------------------------------------------------------- /docs/api/singular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/singular.html -------------------------------------------------------------------------------- /docs/api/singular.rhino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/singular.rhino.html -------------------------------------------------------------------------------- /docs/api/singular.topology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/singular.topology.html -------------------------------------------------------------------------------- /docs/api/singular.utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/api/singular.utilities.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples/00_densification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/examples/00_densification.html -------------------------------------------------------------------------------- /docs/examples/01_decomposition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/examples/01_decomposition.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docsource/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docsource/01_getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/01_getting_started.rst -------------------------------------------------------------------------------- /docsource/02_overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/02_overview.rst -------------------------------------------------------------------------------- /docsource/03_examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/03_examples.rst -------------------------------------------------------------------------------- /docsource/04_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/04_api.rst -------------------------------------------------------------------------------- /docsource/05_license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/05_license.rst -------------------------------------------------------------------------------- /docsource/06_citing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/06_citing.rst -------------------------------------------------------------------------------- /docsource/07_publications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/07_publications.rst -------------------------------------------------------------------------------- /docsource/PLACEHOLDER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/PLACEHOLDER -------------------------------------------------------------------------------- /docsource/_images/00_densification_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/00_densification_0.png -------------------------------------------------------------------------------- /docsource/_images/00_densification_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/00_densification_1.png -------------------------------------------------------------------------------- /docsource/_images/00_densification_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/00_densification_2.png -------------------------------------------------------------------------------- /docsource/_images/00_densification_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/00_densification_3.png -------------------------------------------------------------------------------- /docsource/_images/00_densification_poles_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/00_densification_poles_0.png -------------------------------------------------------------------------------- /docsource/_images/00_densification_poles_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/00_densification_poles_1.png -------------------------------------------------------------------------------- /docsource/_images/01_decomposition_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/01_decomposition_1.png -------------------------------------------------------------------------------- /docsource/_images/01_decomposition_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/01_decomposition_2.png -------------------------------------------------------------------------------- /docsource/_images/01_decomposition_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/01_decomposition_3.png -------------------------------------------------------------------------------- /docsource/_images/01_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_images/01_front.jpg -------------------------------------------------------------------------------- /docsource/_images/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | # container for images to be included in the docs 2 | -------------------------------------------------------------------------------- /docsource/_static/PLACEHOLDER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_static/PLACEHOLDER -------------------------------------------------------------------------------- /docsource/_templates/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | # template files for Sphinx 2 | -------------------------------------------------------------------------------- /docsource/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docsource/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docsource/_templates/autosummary/method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_templates/autosummary/method.rst -------------------------------------------------------------------------------- /docsource/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docsource/api/compas_singular.algorithms.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: compas_singular.algorithms 3 | -------------------------------------------------------------------------------- /docsource/api/compas_singular.datastructures.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: compas_singular.datastructures 3 | -------------------------------------------------------------------------------- /docsource/api/compas_singular.geometry.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: compas_singular.geometry 3 | -------------------------------------------------------------------------------- /docsource/api/compas_singular.rhino.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: compas_singular.rhino 3 | -------------------------------------------------------------------------------- /docsource/api/compas_singular.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: compas_singular 3 | -------------------------------------------------------------------------------- /docsource/api/compas_singular.topology.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: compas_singular.topology 3 | -------------------------------------------------------------------------------- /docsource/api/compas_singular.utilities.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: compas_singular.utilities 3 | -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.__init__.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.__init__.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.add_face.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.add_face.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.area.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.area.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.branches.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.branches.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.centroid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.centroid.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.clear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.clear.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.copy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.copy.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.cut.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.cut.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.dual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.dual.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.edges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.edges.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.euler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.euler.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.faces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.faces.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.from_obj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.from_obj.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.from_off.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.from_off.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.genus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.genus.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.join.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.join.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.lines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.lines.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.algorithms.Skeleton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.algorithms.Skeleton.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.area.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.area.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.clear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.clear.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.copy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.copy.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.cut.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.cut.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.dual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.dual.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.edges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.edges.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.euler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.euler.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.faces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.faces.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.genus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.genus.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.join.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.join.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Mesh.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.Network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.Network.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.QuadMesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.QuadMesh.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.add_handle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.add_handle.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.add_strip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.add_strip.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.add_strips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.add_strips.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.datastructures.fold.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.datastructures.fold.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.geometry.Polyline.copy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.geometry.Polyline.copy.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.geometry.Polyline.point.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.geometry.Polyline.point.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.geometry.Polyline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.geometry.Polyline.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.geometry.Polyline.to_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.geometry.Polyline.to_data.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.geometry.circular_array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.geometry.circular_array.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.geometry.line_array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.geometry.line_array.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.geometry.spiral_array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.geometry.spiral_array.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.__init__.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.__init__.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.divide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.divide.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.is_line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.is_line.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.is_nurbs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.is_nurbs.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.length.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.length.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.space.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.space.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoCurve.tangents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoCurve.tangents.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoSurface.kinks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoSurface.kinks.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoSurface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoSurface.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.RhinoSurface.space.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.RhinoSurface.space.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.rhino.draw_graph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.rhino.draw_graph.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.utilities.common_items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.utilities.common_items.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.utilities.is_dominating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.utilities.is_dominating.rst -------------------------------------------------------------------------------- /docsource/api/generated/compas_singular.utilities.list_split.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/api/generated/compas_singular.utilities.list_split.rst -------------------------------------------------------------------------------- /docsource/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/conf.py -------------------------------------------------------------------------------- /docsource/examples/00_densification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/examples/00_densification.rst -------------------------------------------------------------------------------- /docsource/examples/01_decomposition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/examples/01_decomposition.rst -------------------------------------------------------------------------------- /docsource/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/docsource/index.rst -------------------------------------------------------------------------------- /examples/00_densification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/00_densification.py -------------------------------------------------------------------------------- /examples/01_densification_poles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/01_densification_poles.py -------------------------------------------------------------------------------- /examples/02_decomposition_discrete_planar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/02_decomposition_discrete_planar.py -------------------------------------------------------------------------------- /examples/03_decomposition_continuous_curved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/03_decomposition_continuous_curved.py -------------------------------------------------------------------------------- /examples/04_lizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/04_lizard.py -------------------------------------------------------------------------------- /examples/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | examples ready to be used 2 | -------------------------------------------------------------------------------- /examples/blank.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/blank.rst -------------------------------------------------------------------------------- /examples/data/01_decomposition.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/data/01_decomposition.3dm -------------------------------------------------------------------------------- /examples/data/01_decomposition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/data/01_decomposition.json -------------------------------------------------------------------------------- /examples/data/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | data ready to be computed (e.g. mesh data) 2 | -------------------------------------------------------------------------------- /examples/data/coarse_quad_mesh_british_museum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/data/coarse_quad_mesh_british_museum.json -------------------------------------------------------------------------------- /examples/data/coarse_quad_mesh_british_museum_poles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/data/coarse_quad_mesh_british_museum_poles.json -------------------------------------------------------------------------------- /examples/grasshopper/examples/01_quad_mesh_data.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/examples/01_quad_mesh_data.gh -------------------------------------------------------------------------------- /examples/grasshopper/examples/03_surface_quad_meshing.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/examples/03_surface_quad_meshing.gh -------------------------------------------------------------------------------- /examples/grasshopper/examples/04_quad_mesh_topological_edit.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/examples/04_quad_mesh_topological_edit.gh -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Add quad-mesh strips.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Add quad-mesh strips.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Boundary elements.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Boundary elements.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Coarsen quad mesh.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Coarsen quad mesh.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Collect edge elements.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Collect edge elements.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Conway operator.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Conway operator.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Delete quad-mesh strips.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Delete quad-mesh strips.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Densify quad mesh.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Densify quad mesh.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Mesh edges.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Mesh edges.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Mesh faces.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Mesh faces.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Mesh vertices.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Mesh vertices.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Move vertices.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Move vertices.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Quad mesh polyedges.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Quad mesh polyedges.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Quad mesh singularities.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Quad mesh singularities.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Quad mesh strips.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Quad mesh strips.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Quad mesh.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Quad mesh.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Surface quad decomposition.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Surface quad decomposition.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/Surface topological skeleton.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/Surface topological skeleton.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/from Rhino mesh.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/from Rhino mesh.ghuser -------------------------------------------------------------------------------- /examples/grasshopper/user_objects/to Rhino mesh.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/examples/grasshopper/user_objects/to Rhino mesh.ghuser -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/setup.py -------------------------------------------------------------------------------- /src/compas_singular/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/decomposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/decomposition.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/isomorphism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/isomorphism.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/layout.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/mapping.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/propagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/propagation.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/triangulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/triangulation.py -------------------------------------------------------------------------------- /src/compas_singular/algorithms/twocoloring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/algorithms/twocoloring.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/lizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/lizard/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/lizard/lizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/lizard/lizard.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh/coloring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh/coloring.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh/mesh.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh/operations.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/coloring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/coloring.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/grammar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/grammar/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/grammar/add_strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/grammar/add_strip.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/grammar/delete_strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/grammar/delete_strip.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/grammar_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/grammar_pattern.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/grammar_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/grammar_shape.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/mesh_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/mesh_quad.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad/morphing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad/morphing.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad_coarse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad_coarse/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad_coarse/coloring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad_coarse/coloring.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad_pseudo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad_pseudo/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/mesh_quad_pseudo/grammar_poles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/mesh_quad_pseudo/grammar_poles.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/network/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/network/network.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/skeleton/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/skeleton/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/datastructures/skeleton/skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/datastructures/skeleton/skeleton.py -------------------------------------------------------------------------------- /src/compas_singular/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/geometry/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/geometry/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/geometry/array.py -------------------------------------------------------------------------------- /src/compas_singular/geometry/polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/geometry/polyline.py -------------------------------------------------------------------------------- /src/compas_singular/geometry/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/geometry/projection.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/__temp/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/__temp/display.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/__temp/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/__temp/helpers/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/__temp/helpers/density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/__temp/helpers/density.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/__temp/helpers/getters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/__temp/helpers/getters.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/__temp/helpers/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/__temp/helpers/pattern.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/__temp/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/__temp/output.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/artists/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/artists/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/artists/__temp/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/artists/__temp/draw.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/artists/decompositionartist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_singular/rhino/artists/patternartist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/artists/patternartist.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/artists/quadmeshartist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_singular/rhino/artists/skeletonartist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_singular/rhino/constraints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/constraints/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/constraints/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/constraints/constraints.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/constraints/relaxation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/constraints/relaxation.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/geometry/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/geometry/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/geometry/curve.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/geometry/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/geometry/surface.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/grasshopper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/rhino/grasshopper.py -------------------------------------------------------------------------------- /src/compas_singular/rhino/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_singular/topology/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/topology/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/topology/coloring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/topology/coloring.py -------------------------------------------------------------------------------- /src/compas_singular/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/utilities/__init__.py -------------------------------------------------------------------------------- /src/compas_singular/utilities/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/utilities/lists.py -------------------------------------------------------------------------------- /src/compas_singular/utilities/pareto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/src/compas_singular/utilities/pareto.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/tasks.py -------------------------------------------------------------------------------- /temp/PLACEHOLDER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/temp/PLACEHOLDER -------------------------------------------------------------------------------- /tests/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | # container for unit tests 2 | -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BRG-research/compas_singular/HEAD/tests/test_import.py --------------------------------------------------------------------------------