Some tools for getting Wavefront OBJ files into a Plotly Dash 3dmesh graph
Project description
Wavefront OBJ importer for the plotly Dash framework
Dash is a Python framework for building analytical web applications. This library helps you to get 3D ObJ into the framework's 3dmesh graph type
Source is here:
https://github.com/aegis1980/dash-obj-in-3dmesh.git
Also on pypi, installed using:
pip install dash-obj-in-3dmesh
Some notes:
File locations
Put your wavefront obj & mtl file in 'data/obj' directory in the root directory of your Dash app. Alternatively pass a path to:
import_geometry(obj_names : List[str], path = _config.GEOMETRY_DIR)
Geometry
- v4.0 Added support importing OBJ files with quads. Dash graph.Mesh3d can only display triangulated meshes. Imported quad are split in
mesh_tools.split_quad()
into two tris with the fold line on the quad diagonal which produces the least curvature (i.e. the widest angle between the tri normals) - Textures, normals and everything else are ignored - only vertices, faces, materials, groups and object names are parsed and passed to Dash graph as mesh data.
- ...so to speeden things up strip all that data out of your files pre-deployment
Materials
obj file can have an accompanying materials file, but only basic materials supported in mtl file: e.g:
newmtl diffuse_Green
Ka 0.0000 0.0000 0.0000
Kd 0.0000 1.0000 0.0000
Ks 1.0000 1.0000 1.0000
Tf 0.0000 0.0000 0.0000
d 1.0000
Ns 0.0000
Only the value for Kd
is used - so set this as your colour (in modelling software).
Code example
import dash
import dash_obj_in_3dmesh
model_name = "test" #.obj & .mtl files in data/obj
axis_template = {
"showbackground": False,
"visible" : False
}
plot_layout = {
"title": "",
"margin": {"t": 0, "b": 0, "l": 0, "r": 0},
"font": {"size": 12, "color": "white"},
"showlegend": False,
'uirevision':'same_all_the_time', #this keeps camera position etc the same when data changes.
"scene": {
"xaxis": axis_template,
"yaxis": axis_template,
"zaxis": axis_template,
"aspectmode" : "data",
"camera": {"eye": {"x": 1.25, "y": 1.25, "z": 1.25}},
"annotations": [],
},
}
def layout():
return html.Div([dcc.Graph(
id="graph",
figure={
"data": geometry_tools.import_geometry([model_name]),
"layout": plot_layout,
},
config={"scrollZoom": True}, # activates wheel thingy on mouse to zoom and wotnot
)])
app = Dash()
app.layout = layout
app.run_server()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dash-obj-in-3dmesh-0.4.0.tar.gz
(13.5 kB
view details)
Built Distribution
File details
Details for the file dash-obj-in-3dmesh-0.4.0.tar.gz
.
File metadata
- Download URL: dash-obj-in-3dmesh-0.4.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6343e490c2ec08220d194347784a1eed01539318c94ce91373cebde9bc97506e |
|
MD5 | bf85dfa1373b3fbeae30972d26855fcb |
|
BLAKE2b-256 | 725bd822ff4d74d467815c95ce37e5974860071e145d5a03279d200a3ca3bf06 |
File details
Details for the file dash_obj_in_3dmesh-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: dash_obj_in_3dmesh-0.4.0-py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d9db77ee549f08b951d9eb92f96b25ef80ecc38387aa34f093125bf0289358b |
|
MD5 | b39bc20df66e82a95512f8dcdc8fa0c7 |
|
BLAKE2b-256 | 7037f060ef22bd43ce27b6296dc20c51b84b77c3d95ece5a2a302a13853704f6 |