f3d 3.1.0rc3__cp312-cp312-win_amd64.whl → 3.2.0rc2__cp312-cp312-win_amd64.whl

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.

Potentially problematic release.


This version of f3d might be problematic. Click here for more details.

f3d/__init__.py CHANGED
@@ -1,3 +1,7 @@
1
+ """
2
+ Fast and minimalist 3D viewer
3
+ """
4
+
1
5
  # This file is auto-generated by CMake, do not edit!
2
6
  # Refer to python/__init__.py.in source file
3
7
 
@@ -25,10 +29,13 @@ if sys.version_info >= (3, 8) and sys.platform == "win32":
25
29
 
26
30
  from .pyf3d import *
27
31
 
32
+ # Automatically populate __all__ with symbols imported from pyf3d
33
+ __all__ = [name for name in dir(pyf3d) if not name.startswith("_")]
34
+
28
35
  # Automatically load plugins for the user
29
36
  Engine.autoload_plugins()
30
37
 
31
- __version__ = "3.1.0"
38
+ __version__ = "3.2.0"
32
39
 
33
40
 
34
41
  ################################################################################
f3d/__init__.pyi CHANGED
@@ -1,3 +1,7 @@
1
+ """
2
+
3
+ Fast and minimalist 3D viewer
4
+ """
1
5
  from __future__ import annotations
2
6
  from f3d.pyf3d import Camera
3
7
  from f3d.pyf3d import CameraState
@@ -21,15 +25,15 @@ import sys as sys
21
25
  from typing import Any
22
26
  import warnings as warnings
23
27
  from . import pyf3d
24
- __all__ = ['Any', 'Camera', 'CameraState', 'Engine', 'F3D_ABSOLUTE_DLLS', 'F3D_RELATIVE_DLLS', 'Image', 'InteractionBind', 'Interactor', 'LibInformation', 'Log', 'Mesh', 'Options', 'Path', 'ReaderInformation', 'Scene', 'Utils', 'Window', 'abs_path', 'os', 'pyf3d', 're', 'root', 'sys', 'warnings']
28
+ __all__: list = ['Camera', 'CameraState', 'Engine', 'Image', 'InteractionBind', 'Interactor', 'LibInformation', 'Log', 'Mesh', 'Options', 'ReaderInformation', 'Scene', 'Utils', 'Window']
25
29
  def _add_deprecation_warnings():
26
30
  ...
27
31
  def _deprecated_decorator(f, reason):
28
32
  ...
29
33
  def _f3d_options_update(self, arg: typing.Union[typing.Mapping[str, typing.Any], typing.Iterable[tuple[str, typing.Any]]]) -> None:
30
34
  ...
31
- F3D_ABSOLUTE_DLLS: list = ['D:/a/f3d-superbuild/f3d-superbuild/fsbb/install/bin', 'D:/a/f3d-superbuild/f3d-superbuild/fsbb/install/lib', 'C:/Users/runneradmin/AppData/Local/Temp/tmp7kea_4k2/build/bin']
35
+ F3D_ABSOLUTE_DLLS: list = ['D:/a/f3d-superbuild/f3d-superbuild/fsbb/install/bin', 'D:/a/f3d-superbuild/f3d-superbuild/fsbb/install/lib', 'C:/Users/runneradmin/AppData/Local/Temp/tmpqx7_dod2/build/bin']
32
36
  F3D_RELATIVE_DLLS: list = list()
33
- __version__: str = '3.1.0'
34
- abs_path: str = 'C:/Users/runneradmin/AppData/Local/Temp/tmp7kea_4k2/build/bin'
35
- root: pathlib.WindowsPath # value = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/tmp7kea_4k2/build/f3d')
37
+ __version__: str = '3.2.0'
38
+ abs_path: str = 'C:/Users/runneradmin/AppData/Local/Temp/tmpqx7_dod2/build/bin'
39
+ root: pathlib.WindowsPath # value = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/tmpqx7_dod2/build/f3d')
f3d/bin/f3d.dll CHANGED
Binary file
f3d/bin/vcruntime140.dll CHANGED
Binary file
f3d/bin/zlib.dll CHANGED
Binary file
f3d/py.typed ADDED
File without changes
Binary file
f3d/pyf3d.pyi CHANGED
@@ -42,7 +42,7 @@ class CameraState:
42
42
  def __init__(self) -> None:
43
43
  ...
44
44
  @typing.overload
45
- def __init__(self, position: tuple[float, float, float], focal_point: tuple[float, float, float], view_up: tuple[float, float, float], view_angle: float) -> None:
45
+ def __init__(self, position: tuple[float, float, float] = (0.0, 0.0, 1.0), focal_point: tuple[float, float, float] = (0.0, 0.0, 0.0), view_up: tuple[float, float, float] = (0.0, 1.0, 0.0), view_angle: float = 30.0) -> None:
46
46
  ...
47
47
  class Engine:
48
48
  options: Options
@@ -122,7 +122,7 @@ class Engine:
122
122
  def get_rendering_backend_list() -> dict[str, bool]:
123
123
  ...
124
124
  @staticmethod
125
- def load_plugin(arg0: str, arg1: list[os.PathLike[str]]) -> None:
125
+ def load_plugin(arg0: str, arg1: typing.Sequence[os.PathLike[str]]) -> None:
126
126
  """
127
127
  Load a plugin
128
128
  """
@@ -349,7 +349,7 @@ class Interactor:
349
349
  Add a binding command
350
350
  """
351
351
  @typing.overload
352
- def add_binding(self, arg0: InteractionBind, arg1: list[str], arg2: str, arg3: typing.Callable[[], tuple[str, str]]) -> Interactor:
352
+ def add_binding(self, arg0: InteractionBind, arg1: typing.Sequence[str], arg2: str, arg3: typing.Callable[[], tuple[str, str]]) -> Interactor:
353
353
  """
354
354
  Add binding commands
355
355
  """
@@ -514,6 +514,9 @@ class Log:
514
514
  QUIET: typing.ClassVar[Log.VerboseLevel] # value = <VerboseLevel.QUIET: 4>
515
515
  WARN: typing.ClassVar[Log.VerboseLevel] # value = <VerboseLevel.WARN: 2>
516
516
  @staticmethod
517
+ def get_verbose_level() -> Log.VerboseLevel:
518
+ ...
519
+ @staticmethod
517
520
  def print(arg0: Log.VerboseLevel, arg1: str) -> None:
518
521
  ...
519
522
  @staticmethod
@@ -532,10 +535,10 @@ class Mesh:
532
535
  def __init__(self) -> None:
533
536
  ...
534
537
  @typing.overload
535
- def __init__(self, points: list[float], normals: list[float] = [], texture_coordinates: list[float] = [], face_sides: list[int] = [], face_indices: list[int] = []) -> None:
538
+ def __init__(self, points: typing.Sequence[float], normals: typing.Sequence[float] = [], texture_coordinates: typing.Sequence[float] = [], face_sides: typing.Sequence[int] = [], face_indices: typing.Sequence[int] = []) -> None:
536
539
  ...
537
540
  class Options:
538
- def __getitem__(self, arg0: str) -> bool | int | float | str | list[float]:
541
+ def __getitem__(self, arg0: str) -> bool | int | float | str | list[float] | list[int]:
539
542
  ...
540
543
  def __init__(self) -> None:
541
544
  ...
@@ -543,7 +546,7 @@ class Options:
543
546
  ...
544
547
  def __len__(self) -> int:
545
548
  ...
546
- def __setitem__(self, arg0: str, arg1: bool | int | float | str | list[float]) -> None:
549
+ def __setitem__(self, arg0: str, arg1: bool | int | float | str | typing.Sequence[float] | typing.Sequence[int]) -> None:
547
550
  ...
548
551
  def copy(self, arg0: Options, arg1: str) -> Options:
549
552
  ...
@@ -586,12 +589,12 @@ class Scene:
586
589
  Add a file the scene
587
590
  """
588
591
  @typing.overload
589
- def add(self, file_path_vector: list[os.PathLike[str]]) -> Scene:
592
+ def add(self, file_path_vector: typing.Sequence[os.PathLike[str]]) -> Scene:
590
593
  """
591
594
  Add multiple filepaths to the scene
592
595
  """
593
596
  @typing.overload
594
- def add(self, file_name_vector: list[str]) -> Scene:
597
+ def add(self, file_name_vector: typing.Sequence[str]) -> Scene:
595
598
  """
596
599
  Add multiple filenames to the scene
597
600
  """
@@ -602,6 +605,8 @@ class Scene:
602
605
  """
603
606
  def animation_time_range(self) -> tuple[float, float]:
604
607
  ...
608
+ def available_animations(self) -> int:
609
+ ...
605
610
  def clear(self) -> Scene:
606
611
  ...
607
612
  def load_animation_time(self, arg0: float) -> Scene:
@@ -609,10 +614,62 @@ class Scene:
609
614
  def supports(self, arg0: os.PathLike[str]) -> bool:
610
615
  ...
611
616
  class Utils:
617
+ class KnownFolder:
618
+ """
619
+ Members:
620
+
621
+ ROAMINGAPPDATA
622
+
623
+ LOCALAPPDATA
624
+
625
+ PICTURES
626
+ """
627
+ LOCALAPPDATA: typing.ClassVar[Utils.KnownFolder] # value = <KnownFolder.LOCALAPPDATA: 1>
628
+ PICTURES: typing.ClassVar[Utils.KnownFolder] # value = <KnownFolder.PICTURES: 2>
629
+ ROAMINGAPPDATA: typing.ClassVar[Utils.KnownFolder] # value = <KnownFolder.ROAMINGAPPDATA: 0>
630
+ __members__: typing.ClassVar[dict[str, Utils.KnownFolder]] # value = {'ROAMINGAPPDATA': <KnownFolder.ROAMINGAPPDATA: 0>, 'LOCALAPPDATA': <KnownFolder.LOCALAPPDATA: 1>, 'PICTURES': <KnownFolder.PICTURES: 2>}
631
+ def __eq__(self, other: typing.Any) -> bool:
632
+ ...
633
+ def __getstate__(self) -> int:
634
+ ...
635
+ def __hash__(self) -> int:
636
+ ...
637
+ def __index__(self) -> int:
638
+ ...
639
+ def __init__(self, value: int) -> None:
640
+ ...
641
+ def __int__(self) -> int:
642
+ ...
643
+ def __ne__(self, other: typing.Any) -> bool:
644
+ ...
645
+ def __repr__(self) -> str:
646
+ ...
647
+ def __setstate__(self, state: int) -> None:
648
+ ...
649
+ def __str__(self) -> str:
650
+ ...
651
+ @property
652
+ def name(self) -> str:
653
+ ...
654
+ @property
655
+ def value(self) -> int:
656
+ ...
657
+ LOCALAPPDATA: typing.ClassVar[Utils.KnownFolder] # value = <KnownFolder.LOCALAPPDATA: 1>
658
+ PICTURES: typing.ClassVar[Utils.KnownFolder] # value = <KnownFolder.PICTURES: 2>
659
+ ROAMINGAPPDATA: typing.ClassVar[Utils.KnownFolder] # value = <KnownFolder.ROAMINGAPPDATA: 0>
612
660
  @staticmethod
613
661
  def collapse_path(arg0: os.PathLike[str], arg1: os.PathLike[str]) -> os.PathLike[str]:
614
662
  ...
615
663
  @staticmethod
664
+ def get_env(arg0: str) -> str | None:
665
+ ...
666
+ @staticmethod
667
+ def get_known_folder(arg0: Utils.KnownFolder) -> str | None:
668
+ ...
669
+ @staticmethod
670
+ def glob_to_regex(glob: str, path_separator: str = '/') -> str:
671
+ ...
672
+ @staticmethod
616
673
  def text_distance(arg0: str, arg1: str) -> int:
617
674
  ...
618
675
  class Window:
@@ -1,5 +1,5 @@
1
1
  {
2
- "description" : "Alembic support (version 1.8.5)",
2
+ "description" : "Alembic support (version 1.8.8)",
3
3
  "name" : "alembic",
4
4
  "readers" :
5
5
  [
@@ -12,12 +12,12 @@
12
12
  "name" : "FBX"
13
13
  },
14
14
  {
15
- "description" : "Collada",
15
+ "description" : "COLLADA",
16
16
  "exclude_thumbnailer" : false,
17
17
  "extensions" : [ "dae" ],
18
18
  "full_scene" : true,
19
19
  "mimetypes" : [ "application/vnd.dae" ],
20
- "name" : "Collada"
20
+ "name" : "COLLADA"
21
21
  },
22
22
  {
23
23
  "description" : "AutoCAD DXF",
@@ -1,5 +1,5 @@
1
1
  {
2
- "description" : "Draco support (version 1.5.6)",
2
+ "description" : "Draco support (version 1.5.7)",
3
3
  "name" : "draco",
4
4
  "readers" :
5
5
  [
@@ -0,0 +1,33 @@
1
+ {
2
+ "description" : "VTK HDF formats support",
3
+ "name" : "hdf",
4
+ "readers" :
5
+ [
6
+ {
7
+ "description" : "VTKHDF",
8
+ "exclude_thumbnailer" : false,
9
+ "extensions" : [ "vtkhdf" ],
10
+ "full_scene" : false,
11
+ "mimetypes" : [ "application/vnd.vtkhdf" ],
12
+ "name" : "VTKHDF"
13
+ },
14
+ {
15
+ "description" : "Exodus II",
16
+ "exclude_thumbnailer" : false,
17
+ "extensions" : [ "exo", "ex2", "e", "g" ],
18
+ "full_scene" : false,
19
+ "mimetypes" : [ "application/vnd.exodus" ],
20
+ "name" : "ExodusII"
21
+ },
22
+ {
23
+ "description" : "NetCDF",
24
+ "exclude_thumbnailer" : false,
25
+ "extensions" : [ "nc", "cdf", "ncdf" ],
26
+ "full_scene" : false,
27
+ "mimetypes" : [ "application/netcdf", "application/x-netcdf" ],
28
+ "name" : "NetCDF"
29
+ }
30
+ ],
31
+ "type" : "STATIC",
32
+ "version" : "1.0"
33
+ }
@@ -59,14 +59,6 @@
59
59
  "mimetypes" : [ "model/obj" ],
60
60
  "name" : "OBJ"
61
61
  },
62
- {
63
- "description" : "Polygon",
64
- "exclude_thumbnailer" : false,
65
- "extensions" : [ "ply" ],
66
- "full_scene" : false,
67
- "mimetypes" : [ "application/vnd.ply" ],
68
- "name" : "PLYReader"
69
- },
70
62
  {
71
63
  "description" : "Point Cloud",
72
64
  "exclude_thumbnailer" : false,
@@ -155,6 +147,22 @@
155
147
  "mimetypes" : [ "application/vnd.vtm" ],
156
148
  "name" : "VTKXMLVTM"
157
149
  },
150
+ {
151
+ "description" : "Quake 1 MDL model",
152
+ "exclude_thumbnailer" : false,
153
+ "extensions" : [ "mdl" ],
154
+ "full_scene" : true,
155
+ "mimetypes" : [ "application/vnd.mdl" ],
156
+ "name" : "QuakeMDL"
157
+ },
158
+ {
159
+ "description" : "Compressed 3D gaussian splats",
160
+ "exclude_thumbnailer" : false,
161
+ "extensions" : [ "spz" ],
162
+ "full_scene" : false,
163
+ "mimetypes" : [ "application/vnd.spz" ],
164
+ "name" : "SPZ"
165
+ },
158
166
  {
159
167
  "description" : "3D Gaussian splats",
160
168
  "exclude_thumbnailer" : false,
@@ -164,12 +172,12 @@
164
172
  "name" : "Splat"
165
173
  },
166
174
  {
167
- "description" : "Quake 1 MDL model",
175
+ "description" : "Polygon",
168
176
  "exclude_thumbnailer" : false,
169
- "extensions" : [ "mdl" ],
170
- "full_scene" : true,
171
- "mimetypes" : [ "application/vnd.mdl" ],
172
- "name" : "QuakeMDL"
177
+ "extensions" : [ "ply" ],
178
+ "full_scene" : false,
179
+ "mimetypes" : [ "application/vnd.ply" ],
180
+ "name" : "PLYReader"
173
181
  }
174
182
  ],
175
183
  "type" : "STATIC",
@@ -1,5 +1,5 @@
1
1
  {
2
- "description" : "OpenCASCADE support (version 7.7.2)",
2
+ "description" : "OpenCASCADE support (version 7.9.0)",
3
3
  "name" : "occt",
4
4
  "readers" :
5
5
  [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: f3d
3
- Version: 3.1.0rc3
3
+ Version: 3.2.0rc2
4
4
  Summary: F3D, a fast and minimalist 3D viewer
5
5
  Keywords: vtk,animations,fbx,step,stl,gltf,pbr,raytracing,rendering
6
6
  Author: Michael Migliore, Mathieu Westphal
@@ -36,7 +36,7 @@ It is fully controllable from the command line and support configuration files.
36
36
 
37
37
  F3D also contains the libf3d, a simple library to render meshes, with a C++17 API, Python Bindings, and experimental Java and Javascript bindings.
38
38
 
39
- <img src="https://user-images.githubusercontent.com/3129530/194735416-3f386437-456c-4145-9b5e-6bb6451d7e9a.png" width="640">
39
+ <img src="https://media.githubusercontent.com/media/f3d-app/f3d-media/95b76c22d927bb24759bbe0246b6260121f2933b/media/typical.png" width="640">
40
40
 
41
41
  _A typical render by F3D_
42
42
 
@@ -78,9 +78,11 @@ See the [Quickstart Guide](doc/user/QUICKSTART.md) for more information about ge
78
78
  F3D needs your help!
79
79
 
80
80
  If you can, please consider sponsoring F3D. Even a small donation would help us offset the recurring maintenance costs.
81
- With enough sponsors we would even be able to add support for new devices (as we would need do acquire or rent them first). Read more about it on our [sponsor page](https://github.com/sponsors/f3d-app).
81
+ With enough sponsors we would be able to make F3D grow faster and stronger! Read more about it [here](doc/user/SPONSORING.md).
82
82
 
83
- If not, please use F3D, star it on github and share the word about it!
83
+ If you are an industry user of F3D and want to make sure it can keep growing and being maintained, [please reach out](doc/user/SPONSORING.md#industry-sponsors)!
84
+
85
+ In any case, please star it on github and share the word about it!
84
86
 
85
87
  # Vision
86
88
 
@@ -0,0 +1,19 @@
1
+ f3d/__init__.py,sha256=WfEWL_ik2dtPfA9yo1pEiNt7ErOk5hzhZMn7seLeWkw,2540
2
+ f3d/__init__.pyi,sha256=RLiQne53ACx4MoKx5SaqdUByuBAEc4sbh6p92QeV4Xc,1580
3
+ f3d/bin/f3d.dll,sha256=4PLvrpr5N8Z45lh0Y6N03CfvF2ZpF5PxCQgPZQCgHho,47998464
4
+ f3d/bin/vcruntime140.dll,sha256=AgUHHDbBfx771wF4yFLLfUmYXEhCAnUrhwS3rGsYTmA,124496
5
+ f3d/bin/zlib.dll,sha256=pb9qyXz_OhrhhBjci4uRKDHUSEdGRogXqMo4jC5oV-4,90112
6
+ f3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ f3d/pyf3d.cp312-win_amd64.pyd,sha256=0q46wEqq79MbhdCUTrx8GpWG-a55N48LAR6YzOe96Vc,413184
8
+ f3d/pyf3d.pyi,sha256=ShIExNxzBXNr7cyp07_AMdNQ_7tD911au8CA4FdxNJE,26268
9
+ f3d/share/f3d/plugins/alembic.json,sha256=_G1F_3cEdIXKDCJJlL8m5nCCg2l6x3mEDtgiM28L_as,373
10
+ f3d/share/f3d/plugins/assimp.json,sha256=AxzPAnjK0D30wdb3yDSSornp7a6_0KnHsF0K8Q27U2M,1487
11
+ f3d/share/f3d/plugins/draco.json,sha256=5pu2k3hS36XPcYhc3V5QTHbc_zPc9lbLdbGi4a0Ko5c,629
12
+ f3d/share/f3d/plugins/hdf.json,sha256=ReaIr0wepg5qs0GYwlkN6TzgEdwIivXXU6tqLeFb8Vs,869
13
+ f3d/share/f3d/plugins/native.json,sha256=utiMlDkyYidgSVIL-KfaTdkM0rcgRRdG32LrORZsMZE,5247
14
+ f3d/share/f3d/plugins/occt.json,sha256=aXnczyth6dzqe_-eM7vXw9iOdsiJZ4RV4aNofkOwNrU,1121
15
+ f3d-3.2.0rc2.dist-info/METADATA,sha256=LrYPMIjx460biHyf8u2-olNaKp3n-tekJSOwEjrI_Z8,7190
16
+ f3d-3.2.0rc2.dist-info/WHEEL,sha256=TcMXEVBP2SQds4YZwJ6flDTTNRzCE5owNAganfIqM0g,106
17
+ f3d-3.2.0rc2.dist-info/licenses/LICENSE.md,sha256=EHpvgHZeA--NnempBuMwBlNsddNarY0ZEaPvY7ziCFQ,1602
18
+ f3d-3.2.0rc2.dist-info/licenses/doc/THIRD_PARTY_LICENSES.md,sha256=gou3dy4hwf72LdwN0x9EVqsgQ2lGl5LB6MxATpWKIjE,12711
19
+ f3d-3.2.0rc2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: scikit-build-core 0.11.1
2
+ Generator: scikit-build-core 0.11.5
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-win_amd64
5
5
 
@@ -111,10 +111,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
111
111
  SOFTWARE.
112
112
  ```
113
113
 
114
- ## Inter-Regular.ttf
114
+ ## MonaspaceNeon-Regular.0tf
115
115
 
116
116
  ```
117
- Copyright (c) 2016 The Inter Project Authors (https://github.com/rsms/inter)
117
+ Copyright (c) 2023, GitHub https://github.com/githubnext/monaspace
118
+ with Reserved Font Name "Monaspace", including subfamilies: "Argon", "Neon", "Xenon", "Radon", and "Krypton"
118
119
 
119
120
  This Font Software is licensed under the SIL Open Font License, Version 1.1.
120
121
  This license is copied below, and is also available with a FAQ at:
@@ -152,14 +153,14 @@ copyright statement(s).
152
153
  distributed by the Copyright Holder(s).
153
154
 
154
155
  "Modified Version" refers to any derivative made by adding to, deleting,
155
- or substituting -- in part or in whole -- any of the components of the
156
+ or substituting in part or in whole any of the components of the
156
157
  Original Version, by changing formats or by porting the Font Software to a
157
158
  new environment.
158
159
 
159
160
  "Author" refers to any designer, engineer, programmer, technical
160
161
  writer or other person who contributed to the Font Software.
161
162
 
162
- PERMISSION AND CONDITIONS
163
+ PERMISSION & CONDITIONS
163
164
  Permission is hereby granted, free of charge, to any person obtaining
164
165
  a copy of the Font Software, to use, study, copy, merge, embed, modify,
165
166
  redistribute, and sell modified and unmodified copies of the Font
@@ -1,17 +0,0 @@
1
- {
2
- "description" : "VTK Exodus support",
3
- "name" : "exodus",
4
- "readers" :
5
- [
6
- {
7
- "description" : "Exodus II",
8
- "exclude_thumbnailer" : false,
9
- "extensions" : [ "exo", "ex2", "e" ],
10
- "full_scene" : false,
11
- "mimetypes" : [ "application/vnd.exodus" ],
12
- "name" : "ExodusII"
13
- }
14
- ],
15
- "type" : "STATIC",
16
- "version" : "1.0"
17
- }
@@ -1,18 +0,0 @@
1
- f3d/__init__.py,sha256=473I4uiOXlVoRTrJegcj_8TJFWcCj2FuyUP_JYK5how,2359
2
- f3d/__init__.pyi,sha256=L-tfqYFglQFVesAS6lCRXZAe-b5B3jszNOCjijR_aMc,1648
3
- f3d/bin/f3d.dll,sha256=jZwWFojQFTALudPfE9N5SfNWiTZTFgV0FhoYDiBQIk8,45624832
4
- f3d/bin/vcruntime140.dll,sha256=BSrWog03WVfoKqajxEHqVI2JvgmBUWyn6zBuBj1QJ_Q,120400
5
- f3d/bin/zlib.dll,sha256=PvUx5p7yaxevbvr6zuc8dc2A_Unx_gFfi-DT1CfqvcY,90624
6
- f3d/pyf3d.cp312-win_amd64.pyd,sha256=1bFKxpDlCOhhzVoN2s-kwoUZYU5s4SGbPbeO7NmhfCY,467968
7
- f3d/pyf3d.pyi,sha256=7JZlp77ArxfGrZBNPAsEnodGgn_Rhq4UJyR2HGiWFdw,23954
8
- f3d/share/f3d/plugins/alembic.json,sha256=NVQtyuR1lal_VH_I26KRBSBCmsfkqkEV1Bj6XI3uJl0,373
9
- f3d/share/f3d/plugins/assimp.json,sha256=GqKaOghNOUrtiQOKpLeIzdSFo2V2Jb6l1K6UryFVQvo,1487
10
- f3d/share/f3d/plugins/draco.json,sha256=hzBF8tw3JKAqjbLemSjDmznX9KKrAzGnTF1EwxKO4WM,629
11
- f3d/share/f3d/plugins/exodus.json,sha256=EZBy7TcNwU36TqANuHPBpLCN9-y4KWecANCo8sKqF_Y,377
12
- f3d/share/f3d/plugins/native.json,sha256=GiotkKA0ipQGolq0rM3eJXTI6OmKdXsbGCNAdqbiGoI,5006
13
- f3d/share/f3d/plugins/occt.json,sha256=_pvQ3iwAYf0qmcWBOKolAYSJcq7PKP5sWIP7rPevo0o,1121
14
- f3d-3.1.0rc3.dist-info/METADATA,sha256=FqPKiWkct3F2tLjOEzy6x1QMw6nBkwHQwRAiGRD3W3Y,7090
15
- f3d-3.1.0rc3.dist-info/WHEEL,sha256=NwgjyrmVpVzZ-osOl_ZcT-QXHLFroWlAkN7IC9J-0Pg,106
16
- f3d-3.1.0rc3.dist-info/licenses/LICENSE.md,sha256=EHpvgHZeA--NnempBuMwBlNsddNarY0ZEaPvY7ziCFQ,1602
17
- f3d-3.1.0rc3.dist-info/licenses/doc/THIRD_PARTY_LICENSES.md,sha256=vTifpKWax1_bS8IlxKqA-q6wy5ImX4xWdDlenIREa6g,12603
18
- f3d-3.1.0rc3.dist-info/RECORD,,