differt-core 0.0.26__tar.gz → 0.0.29__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.0.26 → differt_core-0.0.29}/Cargo.lock +88 -91
- {differt_core-0.0.26 → differt_core-0.0.29}/PKG-INFO +3 -2
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/Cargo.toml +6 -6
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/geometry/triangle_mesh.rs +5 -5
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/rt/graph.rs +6 -6
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/scene/triangle_scene.rs +2 -2
- {differt_core-0.0.26 → differt_core-0.0.29}/pyproject.toml +1 -0
- differt_core-0.0.26/differt-core/README.md +0 -33
- {differt_core-0.0.26 → differt_core-0.0.29}/Cargo.toml +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/LICENSE.md +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29/differt-core}/README.md +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/benches/bench_main.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/benches/benchmarks/graph_iterators.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/benches/benchmarks/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/rt/graph.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/scene/sionna.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/scene/triangle_scene.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/py.typed +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/scene/_triangle_scene.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/geometry/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/lib.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/rt/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/scene/mod.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/src/scene/sionna.rs +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/tests/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/tests/rt/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/differt-core/tests/rt/test_graph.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/rt/__init__.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/rt/graph.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/scene/sionna.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/scene/triangle_scene.pyi +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/py.typed +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/scene/_triangle_scene.py +0 -0
|
@@ -19,9 +19,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "anstyle"
|
|
22
|
-
version = "1.0.
|
|
22
|
+
version = "1.0.10"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "approx"
|
|
@@ -64,9 +64,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "bytemuck"
|
|
67
|
-
version = "1.
|
|
67
|
+
version = "1.20.0"
|
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
69
|
+
checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a"
|
|
70
70
|
|
|
71
71
|
[[package]]
|
|
72
72
|
name = "byteorder"
|
|
@@ -85,9 +85,9 @@ dependencies = [
|
|
|
85
85
|
|
|
86
86
|
[[package]]
|
|
87
87
|
name = "cargo-platform"
|
|
88
|
-
version = "0.1.
|
|
88
|
+
version = "0.1.9"
|
|
89
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
90
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
91
91
|
dependencies = [
|
|
92
92
|
"serde",
|
|
93
93
|
]
|
|
@@ -146,18 +146,18 @@ dependencies = [
|
|
|
146
146
|
|
|
147
147
|
[[package]]
|
|
148
148
|
name = "clap"
|
|
149
|
-
version = "4.5.
|
|
149
|
+
version = "4.5.23"
|
|
150
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
151
|
+
checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
|
|
152
152
|
dependencies = [
|
|
153
153
|
"clap_builder",
|
|
154
154
|
]
|
|
155
155
|
|
|
156
156
|
[[package]]
|
|
157
157
|
name = "clap_builder"
|
|
158
|
-
version = "4.5.
|
|
158
|
+
version = "4.5.23"
|
|
159
159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
160
|
+
checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
|
|
161
161
|
dependencies = [
|
|
162
162
|
"anstyle",
|
|
163
163
|
"clap_lex",
|
|
@@ -165,9 +165,9 @@ dependencies = [
|
|
|
165
165
|
|
|
166
166
|
[[package]]
|
|
167
167
|
name = "clap_lex"
|
|
168
|
-
version = "0.7.
|
|
168
|
+
version = "0.7.4"
|
|
169
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
170
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
171
171
|
|
|
172
172
|
[[package]]
|
|
173
173
|
name = "criterion"
|
|
@@ -238,7 +238,7 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
|
238
238
|
|
|
239
239
|
[[package]]
|
|
240
240
|
name = "differt-core"
|
|
241
|
-
version = "0.0.
|
|
241
|
+
version = "0.0.29"
|
|
242
242
|
dependencies = [
|
|
243
243
|
"criterion",
|
|
244
244
|
"indexmap",
|
|
@@ -270,12 +270,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
270
270
|
|
|
271
271
|
[[package]]
|
|
272
272
|
name = "errno"
|
|
273
|
-
version = "0.3.
|
|
273
|
+
version = "0.3.10"
|
|
274
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
-
checksum = "
|
|
275
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
276
276
|
dependencies = [
|
|
277
277
|
"libc",
|
|
278
|
-
"windows-sys 0.
|
|
278
|
+
"windows-sys 0.59.0",
|
|
279
279
|
]
|
|
280
280
|
|
|
281
281
|
[[package]]
|
|
@@ -289,9 +289,9 @@ dependencies = [
|
|
|
289
289
|
|
|
290
290
|
[[package]]
|
|
291
291
|
name = "fastrand"
|
|
292
|
-
version = "2.
|
|
292
|
+
version = "2.3.0"
|
|
293
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
294
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
295
295
|
|
|
296
296
|
[[package]]
|
|
297
297
|
name = "futures"
|
|
@@ -406,9 +406,9 @@ dependencies = [
|
|
|
406
406
|
|
|
407
407
|
[[package]]
|
|
408
408
|
name = "hashbrown"
|
|
409
|
-
version = "0.15.
|
|
409
|
+
version = "0.15.2"
|
|
410
410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
-
checksum = "
|
|
411
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
412
412
|
|
|
413
413
|
[[package]]
|
|
414
414
|
name = "heck"
|
|
@@ -424,9 +424,9 @@ checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
|
424
424
|
|
|
425
425
|
[[package]]
|
|
426
426
|
name = "indexmap"
|
|
427
|
-
version = "2.
|
|
427
|
+
version = "2.7.0"
|
|
428
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
-
checksum = "
|
|
429
|
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
|
|
430
430
|
dependencies = [
|
|
431
431
|
"equivalent",
|
|
432
432
|
"hashbrown",
|
|
@@ -461,24 +461,25 @@ dependencies = [
|
|
|
461
461
|
|
|
462
462
|
[[package]]
|
|
463
463
|
name = "itoa"
|
|
464
|
-
version = "1.0.
|
|
464
|
+
version = "1.0.14"
|
|
465
465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "
|
|
466
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
|
467
467
|
|
|
468
468
|
[[package]]
|
|
469
469
|
name = "js-sys"
|
|
470
|
-
version = "0.3.
|
|
470
|
+
version = "0.3.76"
|
|
471
471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
-
checksum = "
|
|
472
|
+
checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
|
|
473
473
|
dependencies = [
|
|
474
|
+
"once_cell",
|
|
474
475
|
"wasm-bindgen",
|
|
475
476
|
]
|
|
476
477
|
|
|
477
478
|
[[package]]
|
|
478
479
|
name = "libc"
|
|
479
|
-
version = "0.2.
|
|
480
|
+
version = "0.2.168"
|
|
480
481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
-
checksum = "
|
|
482
|
+
checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
|
|
482
483
|
|
|
483
484
|
[[package]]
|
|
484
485
|
name = "linked-hash-map"
|
|
@@ -605,9 +606,9 @@ dependencies = [
|
|
|
605
606
|
|
|
606
607
|
[[package]]
|
|
607
608
|
name = "numpy"
|
|
608
|
-
version = "0.
|
|
609
|
+
version = "0.23.0"
|
|
609
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "
|
|
611
|
+
checksum = "b94caae805f998a07d33af06e6a3891e38556051b8045c615470a71590e13e78"
|
|
611
612
|
dependencies = [
|
|
612
613
|
"libc",
|
|
613
614
|
"ndarray",
|
|
@@ -675,9 +676,9 @@ checksum = "9555b1514d2d99d78150d3c799d4c357a3e2c2a8062cd108e93a06d9057629c5"
|
|
|
675
676
|
|
|
676
677
|
[[package]]
|
|
677
678
|
name = "pin-project-lite"
|
|
678
|
-
version = "0.2.
|
|
679
|
+
version = "0.2.15"
|
|
679
680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "
|
|
681
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
|
681
682
|
|
|
682
683
|
[[package]]
|
|
683
684
|
name = "pin-utils"
|
|
@@ -727,24 +728,24 @@ dependencies = [
|
|
|
727
728
|
|
|
728
729
|
[[package]]
|
|
729
730
|
name = "portable-atomic"
|
|
730
|
-
version = "1.
|
|
731
|
+
version = "1.10.0"
|
|
731
732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "
|
|
733
|
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
|
733
734
|
|
|
734
735
|
[[package]]
|
|
735
736
|
name = "portable-atomic-util"
|
|
736
|
-
version = "0.2.
|
|
737
|
+
version = "0.2.4"
|
|
737
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
-
checksum = "
|
|
739
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
739
740
|
dependencies = [
|
|
740
741
|
"portable-atomic",
|
|
741
742
|
]
|
|
742
743
|
|
|
743
744
|
[[package]]
|
|
744
745
|
name = "proc-macro2"
|
|
745
|
-
version = "1.0.
|
|
746
|
+
version = "1.0.92"
|
|
746
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
748
|
+
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
|
|
748
749
|
dependencies = [
|
|
749
750
|
"unicode-ident",
|
|
750
751
|
]
|
|
@@ -762,9 +763,9 @@ dependencies = [
|
|
|
762
763
|
|
|
763
764
|
[[package]]
|
|
764
765
|
name = "pyo3"
|
|
765
|
-
version = "0.
|
|
766
|
+
version = "0.23.3"
|
|
766
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
768
|
+
checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15"
|
|
768
769
|
dependencies = [
|
|
769
770
|
"cfg-if",
|
|
770
771
|
"indexmap",
|
|
@@ -781,9 +782,9 @@ dependencies = [
|
|
|
781
782
|
|
|
782
783
|
[[package]]
|
|
783
784
|
name = "pyo3-build-config"
|
|
784
|
-
version = "0.
|
|
785
|
+
version = "0.23.3"
|
|
785
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
-
checksum = "
|
|
787
|
+
checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b"
|
|
787
788
|
dependencies = [
|
|
788
789
|
"once_cell",
|
|
789
790
|
"target-lexicon",
|
|
@@ -791,9 +792,9 @@ dependencies = [
|
|
|
791
792
|
|
|
792
793
|
[[package]]
|
|
793
794
|
name = "pyo3-ffi"
|
|
794
|
-
version = "0.
|
|
795
|
+
version = "0.23.3"
|
|
795
796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
-
checksum = "
|
|
797
|
+
checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d"
|
|
797
798
|
dependencies = [
|
|
798
799
|
"libc",
|
|
799
800
|
"pyo3-build-config",
|
|
@@ -801,9 +802,9 @@ dependencies = [
|
|
|
801
802
|
|
|
802
803
|
[[package]]
|
|
803
804
|
name = "pyo3-log"
|
|
804
|
-
version = "0.
|
|
805
|
+
version = "0.12.0"
|
|
805
806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
-
checksum = "
|
|
807
|
+
checksum = "3eb421dc86d38d08e04b927b02424db480be71b777fa3a56f32e2f2a3a1a3b08"
|
|
807
808
|
dependencies = [
|
|
808
809
|
"arc-swap",
|
|
809
810
|
"log",
|
|
@@ -812,9 +813,9 @@ dependencies = [
|
|
|
812
813
|
|
|
813
814
|
[[package]]
|
|
814
815
|
name = "pyo3-macros"
|
|
815
|
-
version = "0.
|
|
816
|
+
version = "0.23.3"
|
|
816
817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
-
checksum = "
|
|
818
|
+
checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257"
|
|
818
819
|
dependencies = [
|
|
819
820
|
"proc-macro2",
|
|
820
821
|
"pyo3-macros-backend",
|
|
@@ -824,9 +825,9 @@ dependencies = [
|
|
|
824
825
|
|
|
825
826
|
[[package]]
|
|
826
827
|
name = "pyo3-macros-backend"
|
|
827
|
-
version = "0.
|
|
828
|
+
version = "0.23.3"
|
|
828
829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
-
checksum = "
|
|
830
|
+
checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d"
|
|
830
831
|
dependencies = [
|
|
831
832
|
"heck",
|
|
832
833
|
"proc-macro2",
|
|
@@ -882,9 +883,9 @@ dependencies = [
|
|
|
882
883
|
|
|
883
884
|
[[package]]
|
|
884
885
|
name = "regex"
|
|
885
|
-
version = "1.11.
|
|
886
|
+
version = "1.11.1"
|
|
886
887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
888
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
888
889
|
dependencies = [
|
|
889
890
|
"aho-corasick",
|
|
890
891
|
"memchr",
|
|
@@ -894,9 +895,9 @@ dependencies = [
|
|
|
894
895
|
|
|
895
896
|
[[package]]
|
|
896
897
|
name = "regex-automata"
|
|
897
|
-
version = "0.4.
|
|
898
|
+
version = "0.4.9"
|
|
898
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
900
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
900
901
|
dependencies = [
|
|
901
902
|
"aho-corasick",
|
|
902
903
|
"memchr",
|
|
@@ -946,9 +947,9 @@ dependencies = [
|
|
|
946
947
|
|
|
947
948
|
[[package]]
|
|
948
949
|
name = "rustc-hash"
|
|
949
|
-
version = "
|
|
950
|
+
version = "2.1.0"
|
|
950
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
-
checksum = "
|
|
952
|
+
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
|
|
952
953
|
|
|
953
954
|
[[package]]
|
|
954
955
|
name = "rustc_version"
|
|
@@ -961,15 +962,15 @@ dependencies = [
|
|
|
961
962
|
|
|
962
963
|
[[package]]
|
|
963
964
|
name = "rustix"
|
|
964
|
-
version = "0.38.
|
|
965
|
+
version = "0.38.42"
|
|
965
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
-
checksum = "
|
|
967
|
+
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
|
|
967
968
|
dependencies = [
|
|
968
969
|
"bitflags",
|
|
969
970
|
"errno",
|
|
970
971
|
"libc",
|
|
971
972
|
"linux-raw-sys",
|
|
972
|
-
"windows-sys 0.
|
|
973
|
+
"windows-sys 0.59.0",
|
|
973
974
|
]
|
|
974
975
|
|
|
975
976
|
[[package]]
|
|
@@ -1007,18 +1008,18 @@ dependencies = [
|
|
|
1007
1008
|
|
|
1008
1009
|
[[package]]
|
|
1009
1010
|
name = "serde"
|
|
1010
|
-
version = "1.0.
|
|
1011
|
+
version = "1.0.215"
|
|
1011
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
-
checksum = "
|
|
1013
|
+
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
|
|
1013
1014
|
dependencies = [
|
|
1014
1015
|
"serde_derive",
|
|
1015
1016
|
]
|
|
1016
1017
|
|
|
1017
1018
|
[[package]]
|
|
1018
1019
|
name = "serde_derive"
|
|
1019
|
-
version = "1.0.
|
|
1020
|
+
version = "1.0.215"
|
|
1020
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
-
checksum = "
|
|
1022
|
+
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
|
|
1022
1023
|
dependencies = [
|
|
1023
1024
|
"proc-macro2",
|
|
1024
1025
|
"quote",
|
|
@@ -1027,9 +1028,9 @@ dependencies = [
|
|
|
1027
1028
|
|
|
1028
1029
|
[[package]]
|
|
1029
1030
|
name = "serde_json"
|
|
1030
|
-
version = "1.0.
|
|
1031
|
+
version = "1.0.133"
|
|
1031
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
-
checksum = "
|
|
1033
|
+
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
|
|
1033
1034
|
dependencies = [
|
|
1034
1035
|
"itoa",
|
|
1035
1036
|
"memchr",
|
|
@@ -1076,9 +1077,9 @@ dependencies = [
|
|
|
1076
1077
|
|
|
1077
1078
|
[[package]]
|
|
1078
1079
|
name = "syn"
|
|
1079
|
-
version = "2.0.
|
|
1080
|
+
version = "2.0.90"
|
|
1080
1081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1082
|
+
checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
|
|
1082
1083
|
dependencies = [
|
|
1083
1084
|
"proc-macro2",
|
|
1084
1085
|
"quote",
|
|
@@ -1093,9 +1094,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
1093
1094
|
|
|
1094
1095
|
[[package]]
|
|
1095
1096
|
name = "tempfile"
|
|
1096
|
-
version = "3.
|
|
1097
|
+
version = "3.14.0"
|
|
1097
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
-
checksum = "
|
|
1099
|
+
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
|
|
1099
1100
|
dependencies = [
|
|
1100
1101
|
"cfg-if",
|
|
1101
1102
|
"fastrand",
|
|
@@ -1131,18 +1132,15 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
|
1131
1132
|
|
|
1132
1133
|
[[package]]
|
|
1133
1134
|
name = "unicase"
|
|
1134
|
-
version = "2.
|
|
1135
|
+
version = "2.8.0"
|
|
1135
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
-
checksum = "
|
|
1137
|
-
dependencies = [
|
|
1138
|
-
"version_check",
|
|
1139
|
-
]
|
|
1137
|
+
checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
|
|
1140
1138
|
|
|
1141
1139
|
[[package]]
|
|
1142
1140
|
name = "unicode-ident"
|
|
1143
|
-
version = "1.0.
|
|
1141
|
+
version = "1.0.14"
|
|
1144
1142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
-
checksum = "
|
|
1143
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
|
1146
1144
|
|
|
1147
1145
|
[[package]]
|
|
1148
1146
|
name = "unindent"
|
|
@@ -1168,9 +1166,9 @@ dependencies = [
|
|
|
1168
1166
|
|
|
1169
1167
|
[[package]]
|
|
1170
1168
|
name = "wasm-bindgen"
|
|
1171
|
-
version = "0.2.
|
|
1169
|
+
version = "0.2.99"
|
|
1172
1170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
-
checksum = "
|
|
1171
|
+
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
|
|
1174
1172
|
dependencies = [
|
|
1175
1173
|
"cfg-if",
|
|
1176
1174
|
"once_cell",
|
|
@@ -1179,13 +1177,12 @@ dependencies = [
|
|
|
1179
1177
|
|
|
1180
1178
|
[[package]]
|
|
1181
1179
|
name = "wasm-bindgen-backend"
|
|
1182
|
-
version = "0.2.
|
|
1180
|
+
version = "0.2.99"
|
|
1183
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
-
checksum = "
|
|
1182
|
+
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
|
|
1185
1183
|
dependencies = [
|
|
1186
1184
|
"bumpalo",
|
|
1187
1185
|
"log",
|
|
1188
|
-
"once_cell",
|
|
1189
1186
|
"proc-macro2",
|
|
1190
1187
|
"quote",
|
|
1191
1188
|
"syn",
|
|
@@ -1194,9 +1191,9 @@ dependencies = [
|
|
|
1194
1191
|
|
|
1195
1192
|
[[package]]
|
|
1196
1193
|
name = "wasm-bindgen-macro"
|
|
1197
|
-
version = "0.2.
|
|
1194
|
+
version = "0.2.99"
|
|
1198
1195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
-
checksum = "
|
|
1196
|
+
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
|
|
1200
1197
|
dependencies = [
|
|
1201
1198
|
"quote",
|
|
1202
1199
|
"wasm-bindgen-macro-support",
|
|
@@ -1204,9 +1201,9 @@ dependencies = [
|
|
|
1204
1201
|
|
|
1205
1202
|
[[package]]
|
|
1206
1203
|
name = "wasm-bindgen-macro-support"
|
|
1207
|
-
version = "0.2.
|
|
1204
|
+
version = "0.2.99"
|
|
1208
1205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "
|
|
1206
|
+
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
|
|
1210
1207
|
dependencies = [
|
|
1211
1208
|
"proc-macro2",
|
|
1212
1209
|
"quote",
|
|
@@ -1217,15 +1214,15 @@ dependencies = [
|
|
|
1217
1214
|
|
|
1218
1215
|
[[package]]
|
|
1219
1216
|
name = "wasm-bindgen-shared"
|
|
1220
|
-
version = "0.2.
|
|
1217
|
+
version = "0.2.99"
|
|
1221
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
-
checksum = "
|
|
1219
|
+
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
|
1223
1220
|
|
|
1224
1221
|
[[package]]
|
|
1225
1222
|
name = "web-sys"
|
|
1226
|
-
version = "0.3.
|
|
1223
|
+
version = "0.3.76"
|
|
1227
1224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
-
checksum = "
|
|
1225
|
+
checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
|
|
1229
1226
|
dependencies = [
|
|
1230
1227
|
"js-sys",
|
|
1231
1228
|
"wasm-bindgen",
|
|
@@ -1233,9 +1230,9 @@ dependencies = [
|
|
|
1233
1230
|
|
|
1234
1231
|
[[package]]
|
|
1235
1232
|
name = "wide"
|
|
1236
|
-
version = "0.7.
|
|
1233
|
+
version = "0.7.30"
|
|
1237
1234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
-
checksum = "
|
|
1235
|
+
checksum = "58e6db2670d2be78525979e9a5f9c69d296fd7d670549fe9ebf70f8708cb5019"
|
|
1239
1236
|
dependencies = [
|
|
1240
1237
|
"bytemuck",
|
|
1241
1238
|
"safe_arch",
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: differt-core
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.29
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.9
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.10
|
|
7
7
|
Classifier: Programming Language :: Python :: 3.11
|
|
8
8
|
Classifier: Programming Language :: Python :: 3.12
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
9
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
11
|
Classifier: Operating System :: OS Independent
|
|
11
12
|
Classifier: Topic :: Scientific/Engineering
|
|
@@ -7,17 +7,17 @@ indexmap = {version = "2.5.0", features = ["serde"]}
|
|
|
7
7
|
log = "0.4.21"
|
|
8
8
|
nalgebra = "0.32.3"
|
|
9
9
|
ndarray = {version = "0.16", features = ["rayon"]}
|
|
10
|
-
numpy = "
|
|
10
|
+
numpy = "0.23"
|
|
11
11
|
obj-rs = "0.7.1"
|
|
12
12
|
ply-rs = "0.1.3"
|
|
13
|
-
pyo3 = {version = "0.
|
|
14
|
-
pyo3-log = "0.
|
|
13
|
+
pyo3 = {version = "0.23.3", features = ["abi3-py39", "indexmap"]}
|
|
14
|
+
pyo3-log = "0.12"
|
|
15
15
|
quick-xml = {version = "0.31.0", features = ["serialize"]}
|
|
16
16
|
serde = {version = "1.0.197", features = ["derive"]}
|
|
17
17
|
|
|
18
18
|
[dev-dependencies]
|
|
19
19
|
criterion = "0.5.1"
|
|
20
|
-
pyo3 = {version = "0.
|
|
20
|
+
pyo3 = {version = "0.23.3", features = ["auto-initialize"]}
|
|
21
21
|
rstest = "0.18.2"
|
|
22
22
|
testing_logger = "0.1.1"
|
|
23
23
|
|
|
@@ -36,5 +36,5 @@ unexpected_cfgs = {level = "warn", check-cfg = ['cfg(tarpaulin_include)']}
|
|
|
36
36
|
[package]
|
|
37
37
|
edition = "2021"
|
|
38
38
|
name = "differt-core"
|
|
39
|
-
rust-version = "1.
|
|
40
|
-
version = "0.0.
|
|
39
|
+
rust-version = "1.78.0"
|
|
40
|
+
version = "0.0.29"
|
|
@@ -127,14 +127,14 @@ impl TriangleMesh {
|
|
|
127
127
|
#[getter]
|
|
128
128
|
fn vertices<'py>(&self, py: Python<'py>) -> Bound<'py, PyArray2<f32>> {
|
|
129
129
|
let array = arr2(&self.vertices);
|
|
130
|
-
PyArray2::
|
|
130
|
+
PyArray2::from_owned_array(py, array)
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
/// :class:`Int[np.ndarray, 'num_triangles 3']<jaxtyping.Int>`: The array of triangle indices.
|
|
134
134
|
#[getter]
|
|
135
135
|
fn triangles<'py>(&self, py: Python<'py>) -> Bound<'py, PyArray2<usize>> {
|
|
136
136
|
let array = arr2(&self.triangles);
|
|
137
|
-
PyArray2::
|
|
137
|
+
PyArray2::from_owned_array(py, array)
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
/// :class:`Float[np.ndarray, 'num_vertices 3']<jaxtyping.Float>` | :data:`None`: The array of face colors.
|
|
@@ -146,7 +146,7 @@ impl TriangleMesh {
|
|
|
146
146
|
fn face_colors<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray2<f32>>> {
|
|
147
147
|
if let Some(face_colors) = &self.face_colors {
|
|
148
148
|
let array = arr2(face_colors);
|
|
149
|
-
return Some(PyArray2::
|
|
149
|
+
return Some(PyArray2::from_owned_array(py, array));
|
|
150
150
|
}
|
|
151
151
|
None
|
|
152
152
|
}
|
|
@@ -160,7 +160,7 @@ impl TriangleMesh {
|
|
|
160
160
|
#[getter]
|
|
161
161
|
fn face_materials<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray1<isize>>> {
|
|
162
162
|
if let Some(face_materials) = &self.face_materials {
|
|
163
|
-
return Some(PyArray1::
|
|
163
|
+
return Some(PyArray1::from_slice(py, face_materials.as_slice()));
|
|
164
164
|
}
|
|
165
165
|
None
|
|
166
166
|
}
|
|
@@ -174,7 +174,7 @@ impl TriangleMesh {
|
|
|
174
174
|
fn object_bounds<'py>(&self, py: Python<'py>) -> Option<Bound<'py, PyArray2<usize>>> {
|
|
175
175
|
if let Some(object_bounds) = &self.object_bounds {
|
|
176
176
|
let array = arr2(object_bounds);
|
|
177
|
-
return Some(PyArray2::
|
|
177
|
+
return Some(PyArray2::from_owned_array(py, array));
|
|
178
178
|
}
|
|
179
179
|
None
|
|
180
180
|
}
|
|
@@ -225,7 +225,7 @@ pub mod complete {
|
|
|
225
225
|
) -> Bound<'py, PyArray2<NodeId>> {
|
|
226
226
|
AllPathsFromCompleteGraphIter::new(self.clone(), from_, to, depth, include_from_and_to)
|
|
227
227
|
.collect_array()
|
|
228
|
-
.
|
|
228
|
+
.into_pyarray(py)
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
/// Return an iterator over all paths of length ``depth``
|
|
@@ -497,7 +497,7 @@ pub mod complete {
|
|
|
497
497
|
mut slf: PyRefMut<'py, Self>,
|
|
498
498
|
py: Python<'py>,
|
|
499
499
|
) -> Option<Bound<'py, PyArray1<NodeId>>> {
|
|
500
|
-
slf.next().map(|path| PyArray1::
|
|
500
|
+
slf.next().map(|path| PyArray1::from_vec(py, path))
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
fn __len__(&self) -> usize {
|
|
@@ -557,7 +557,7 @@ pub mod complete {
|
|
|
557
557
|
mut slf: PyRefMut<'py, Self>,
|
|
558
558
|
py: Python<'py>,
|
|
559
559
|
) -> Option<Bound<'py, PyArray2<NodeId>>> {
|
|
560
|
-
slf.iter.next().map(|paths| paths.
|
|
560
|
+
slf.iter.next().map(|paths| paths.into_pyarray(py))
|
|
561
561
|
}
|
|
562
562
|
|
|
563
563
|
fn __len__(&self) -> usize {
|
|
@@ -889,7 +889,7 @@ pub mod directed {
|
|
|
889
889
|
) -> Bound<'py, PyArray2<NodeId>> {
|
|
890
890
|
AllPathsFromDiGraphIter::new(self.clone(), from_, to, depth, include_from_and_to)
|
|
891
891
|
.collect_array()
|
|
892
|
-
.
|
|
892
|
+
.into_pyarray(py)
|
|
893
893
|
}
|
|
894
894
|
|
|
895
895
|
/// Return an iterator over all paths of length ``depth``
|
|
@@ -1057,7 +1057,7 @@ pub mod directed {
|
|
|
1057
1057
|
mut slf: PyRefMut<'py, Self>,
|
|
1058
1058
|
py: Python<'py>,
|
|
1059
1059
|
) -> Option<Bound<'py, PyArray1<NodeId>>> {
|
|
1060
|
-
slf.next().map(|path| PyArray1::
|
|
1060
|
+
slf.next().map(|path| PyArray1::from_vec(py, path))
|
|
1061
1061
|
}
|
|
1062
1062
|
|
|
1063
1063
|
/// Count the number of elements in this iterator by consuming it.
|
|
@@ -1101,7 +1101,7 @@ pub mod directed {
|
|
|
1101
1101
|
mut slf: PyRefMut<'py, Self>,
|
|
1102
1102
|
py: Python<'py>,
|
|
1103
1103
|
) -> Option<Bound<'py, PyArray2<NodeId>>> {
|
|
1104
|
-
slf.iter.next().map(|paths| paths.
|
|
1104
|
+
slf.iter.next().map(|paths| paths.into_pyarray(py))
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
1107
|
/// Count the number of elements in this iterator by consuming it.
|
|
@@ -29,7 +29,7 @@ impl TriangleScene {
|
|
|
29
29
|
#[classmethod]
|
|
30
30
|
fn load_xml(cls: &Bound<'_, PyType>, file: &str) -> PyResult<Self> {
|
|
31
31
|
// TODO: create a Rust variant without PyType?
|
|
32
|
-
let sionna_scene_py_type = PyType::
|
|
32
|
+
let sionna_scene_py_type = PyType::new::<SionnaScene>(cls.py());
|
|
33
33
|
let sionna = SionnaScene::load_xml(&sionna_scene_py_type, file)?;
|
|
34
34
|
|
|
35
35
|
let path = PathBuf::from(file);
|
|
@@ -42,7 +42,7 @@ impl TriangleScene {
|
|
|
42
42
|
|
|
43
43
|
let mut mesh = TriangleMesh::default();
|
|
44
44
|
|
|
45
|
-
let triangle_mesh_py_type = PyType::
|
|
45
|
+
let triangle_mesh_py_type = PyType::new::<TriangleMesh>(cls.py());
|
|
46
46
|
|
|
47
47
|
for (_, shape) in sionna.shapes.into_iter() {
|
|
48
48
|
let mesh_file_path = folder.join(shape.file);
|
|
@@ -12,6 +12,7 @@ classifiers = [
|
|
|
12
12
|
"Programming Language :: Python :: 3.10",
|
|
13
13
|
"Programming Language :: Python :: 3.11",
|
|
14
14
|
"Programming Language :: Python :: 3.12",
|
|
15
|
+
"Programming Language :: Python :: 3.13",
|
|
15
16
|
"License :: OSI Approved :: MIT License",
|
|
16
17
|
"Operating System :: OS Independent",
|
|
17
18
|
"Topic :: Scientific/Engineering",
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/jeertmans/DiffeRT/main/static/logo_250px.png" alt="DiffeRT logo"></img>
|
|
3
|
-
</div>
|
|
4
|
-
|
|
5
|
-
<div align="center">
|
|
6
|
-
|
|
7
|
-
# DiffeRT-core
|
|
8
|
-
|
|
9
|
-
[![Latest Release][pypi-version-badge]][pypi-version-url]
|
|
10
|
-
[![Python version][pypi-python-version-badge]][pypi-version-url]
|
|
11
|
-
[![Documentation][documentation-badge]][documentation-url]
|
|
12
|
-
|
|
13
|
-
</div>
|
|
14
|
-
|
|
15
|
-
This package contains the core backend of
|
|
16
|
-
[DiffeRT](https://pypi.org/project/DiffeRT/),
|
|
17
|
-
implemented in Rust for performances.
|
|
18
|
-
|
|
19
|
-
As a result, both `differt` and `differt-core` will
|
|
20
|
-
share the same version, and `differt` directly depends on `differt-core`.
|
|
21
|
-
|
|
22
|
-
However, you can decide to only install `differt-core`
|
|
23
|
-
if you want to use features that are specific to this package.
|
|
24
|
-
|
|
25
|
-
The installation procedure, contributing guidelines, and documentation,
|
|
26
|
-
are shared with the
|
|
27
|
-
[main DiffeRT package](https://github.com/jeertmans/DiffeRT).
|
|
28
|
-
|
|
29
|
-
[pypi-version-badge]: https://img.shields.io/pypi/v/DiffeRT-core?label=DiffeRT-core&color=blueviolet
|
|
30
|
-
[pypi-version-url]: https://pypi.org/project/DiffeRT-core/
|
|
31
|
-
[pypi-python-version-badge]: https://img.shields.io/pypi/pyversions/DiffeRT-core?color=orange
|
|
32
|
-
[documentation-badge]: https://readthedocs.org/projects/differt/badge/?version=latest
|
|
33
|
-
[documentation-url]: https://differt.readthedocs.io/latest/?badge=latest
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.29}/differt-core/benches/benchmarks/graph_iterators.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/__init__.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/_lowlevel/rt/graph.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.29}/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.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/scene/__init__.py
RENAMED
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.29}/differt-core/python/differt_core/scene/_sionna.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
|
{differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/geometry/triangle_mesh.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.0.26 → differt_core-0.0.29}/python/differt_core/_lowlevel/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
|