differt-core 0.4.0__tar.gz → 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {differt_core-0.4.0 → differt_core-0.5.0}/Cargo.lock +1 -1
- {differt_core-0.4.0 → differt_core-0.5.0}/PKG-INFO +2 -2
- {differt_core-0.4.0 → differt_core-0.5.0}/README.md +1 -1
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/Cargo.toml +1 -1
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/README.md +1 -1
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/geometry/triangle_mesh.rs +2 -2
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/rt/graph.rs +1 -1
- {differt_core-0.4.0 → differt_core-0.5.0}/src/geometry/triangle_mesh.rs +2 -2
- {differt_core-0.4.0 → differt_core-0.5.0}/src/rt/graph.rs +1 -1
- {differt_core-0.4.0 → differt_core-0.5.0}/Cargo.toml +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/LICENSE.md +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/LICENSE.md +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/benches/bench_main.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/benches/benchmarks/graph_iterators.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/benches/benchmarks/mod.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/_differt_core/__init__.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/_differt_core/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/_differt_core/rt/__init__.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/_differt_core/rt/graph.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/_differt_core/scene/sionna.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/_differt_core/scene/triangle_scene.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/py.typed +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/scene/_triangle_scene.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/geometry/mod.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/lib.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/rt/mod.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/scene/mod.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/scene/sionna.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/src/scene/triangle_scene.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/tests/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/tests/rt/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/tests/rt/test_graph.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/differt-core/tests/test_version.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/pyproject.toml +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/__init__.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/rt/__init__.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/rt/graph.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/scene/sionna.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/scene/triangle_scene.pyi +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/py.typed +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/scene/_triangle_scene.py +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/src/geometry/mod.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/src/lib.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/src/rt/mod.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/src/scene/mod.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/src/scene/sionna.rs +0 -0
- {differt_core-0.4.0 → differt_core-0.5.0}/src/scene/triangle_scene.rs +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: differt-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.10
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -36,7 +36,7 @@ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
|
36
36
|
|
|
37
37
|
This package contains the core backend of
|
|
38
38
|
[DiffeRT](https://pypi.org/project/DiffeRT/),
|
|
39
|
-
implemented in Rust for
|
|
39
|
+
implemented in Rust for performance.
|
|
40
40
|
|
|
41
41
|
As a result, both `differt` and `differt-core` will
|
|
42
42
|
share the same version, and `differt` directly depends on `differt-core`.
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
This package contains the core backend of
|
|
16
16
|
[DiffeRT](https://pypi.org/project/DiffeRT/),
|
|
17
|
-
implemented in Rust for
|
|
17
|
+
implemented in Rust for performance.
|
|
18
18
|
|
|
19
19
|
As a result, both `differt` and `differt-core` will
|
|
20
20
|
share the same version, and `differt` directly depends on `differt-core`.
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
This package contains the core backend of
|
|
16
16
|
[DiffeRT](https://pypi.org/project/DiffeRT/),
|
|
17
|
-
implemented in Rust for
|
|
17
|
+
implemented in Rust for performance.
|
|
18
18
|
|
|
19
19
|
As a result, both `differt` and `differt-core` will
|
|
20
20
|
share the same version, and `differt` directly depends on `differt-core`.
|
|
@@ -155,7 +155,7 @@ impl TriangleMesh {
|
|
|
155
155
|
///
|
|
156
156
|
/// The array contains the material indices,
|
|
157
157
|
/// with a special placeholder value of ``-1``.
|
|
158
|
-
///
|
|
158
|
+
/// To obtain the name of the material, see :attr:`material_names`.
|
|
159
159
|
/// This attribute is :data:`None` if all face materials are unset.
|
|
160
160
|
#[getter]
|
|
161
161
|
fn face_materials<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray1<isize>>> {
|
|
@@ -168,7 +168,7 @@ impl TriangleMesh {
|
|
|
168
168
|
/// :class:`Int[np.ndarray, 'num_objects 2']<jaxtyping.Int>` | :data:`None`: The array of object indices.
|
|
169
169
|
///
|
|
170
170
|
/// If the present mesh contains multiple objects, usually as a result of
|
|
171
|
-
/// appending multiple meshes together, this array
|
|
171
|
+
/// appending multiple meshes together, this array contains start and end
|
|
172
172
|
/// indices for each sub mesh.
|
|
173
173
|
#[getter]
|
|
174
174
|
fn object_bounds<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray2<usize>>> {
|
|
@@ -116,7 +116,7 @@ pub mod complete {
|
|
|
116
116
|
|
|
117
117
|
/// A complete graph, i.e.,
|
|
118
118
|
/// a simple undirected graph in which every pair of
|
|
119
|
-
///
|
|
119
|
+
/// distinct nodes is connected by a unique edge.
|
|
120
120
|
///
|
|
121
121
|
/// Args:
|
|
122
122
|
/// num_nodes (int): The number of nodes.
|
|
@@ -155,7 +155,7 @@ impl TriangleMesh {
|
|
|
155
155
|
///
|
|
156
156
|
/// The array contains the material indices,
|
|
157
157
|
/// with a special placeholder value of ``-1``.
|
|
158
|
-
///
|
|
158
|
+
/// To obtain the name of the material, see :attr:`material_names`.
|
|
159
159
|
/// This attribute is :data:`None` if all face materials are unset.
|
|
160
160
|
#[getter]
|
|
161
161
|
fn face_materials<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray1<isize>>> {
|
|
@@ -168,7 +168,7 @@ impl TriangleMesh {
|
|
|
168
168
|
/// :class:`Int[np.ndarray, 'num_objects 2']<jaxtyping.Int>` | :data:`None`: The array of object indices.
|
|
169
169
|
///
|
|
170
170
|
/// If the present mesh contains multiple objects, usually as a result of
|
|
171
|
-
/// appending multiple meshes together, this array
|
|
171
|
+
/// appending multiple meshes together, this array contains start and end
|
|
172
172
|
/// indices for each sub mesh.
|
|
173
173
|
#[getter]
|
|
174
174
|
fn object_bounds<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray2<usize>>> {
|
|
@@ -116,7 +116,7 @@ pub mod complete {
|
|
|
116
116
|
|
|
117
117
|
/// A complete graph, i.e.,
|
|
118
118
|
/// a simple undirected graph in which every pair of
|
|
119
|
-
///
|
|
119
|
+
/// distinct nodes is connected by a unique edge.
|
|
120
120
|
///
|
|
121
121
|
/// Args:
|
|
122
122
|
/// num_nodes (int): The number of nodes.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.4.0 → differt_core-0.5.0}/differt-core/benches/benchmarks/graph_iterators.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/geometry/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/scene/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{differt_core-0.4.0 → differt_core-0.5.0}/differt-core/python/differt_core/scene/_triangle_scene.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/scene/sionna.pyi
RENAMED
|
File without changes
|
{differt_core-0.4.0 → differt_core-0.5.0}/python/differt_core/_differt_core/scene/triangle_scene.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|