i have this example of mesh representation (.obj) using dash vtk:
dash_vtk.View(
id=“view”,
children=[
dash_vtk.GeometryRepresentation(
property={
"color": [0.4, 0.4, 0.4],
},
actor={
"position": [0.5, 0.2, 0.4],
"scale": [0.3, 0.3, 0.3],
},
children=[
dash_vtk.Reader(
vtkClass="vtkOBJReader",
#url=
url="https://kitware.github.io/vtk-js-datasets/data/obj-mtl/star-wars-vader-tie-fighter.obj",
)
],
),
],
),
So it seems that you need to pass an url to your .obj file, how can i do this if the .obj file is in my laptop? i cant pass the directory to the file?