stl-format Questions
1
Solved
I am trying to write a python script that will convert triangular-mesh objects to quad-mesh objects.
For example, image (a) will be my input (.obj/.stl) file and image (b) will be the output.
I am...
Fireworks asked 12/1 at 14:6
5
Solved
I am now studying 3d models (stl files and etc) and how it is made from scratch. What software do I need to use to see what's inside the stl file like this:
solid dart
facet normal 0.00000E+000 0...
Cle asked 4/12, 2018 at 7:47
2
I would like to load an STL file and produce a set of 2D images in different rotations.
I got the basics working with numpy-stl based on this example, ended up with this code -
from stl import ...
Blocking asked 24/7, 2018 at 22:39
1
Solved
I am working on a project in which I have to convert a .dae file to .stl file. I am using the code given below
import sys
sys.path.insert(0, "C:\\Program Files (x86)\\FreeCAD 0.17\\bin\\"...
Cathepsin asked 24/4, 2019 at 18:15
1
Solved
I want to convert a STEP file into an STL file format using Python. I have looked online and it looks like the best option is to either use FreeCAD or OpenCascade (OCC). However, I am a beginner an...
Anchylose asked 16/4, 2019 at 18:49
1
Solved
I create a Qt3D mesh like this:
Qt3DCore::QEntity *newEntity = new Qt3DCore::QEntity();
Qt3DExtras::QConeMesh *mesh =new Qt3DExtras::QConeMesh();
mesh->setTopRadius(0.2);
mesh->setBottomRadi...
Obaza asked 27/8, 2018 at 12:52
1
I'm writing an application that is designed to be used as part of a mechanical design and simulation workflow, and we'd like to be able to use Three.js to load and visualize parts designed in Solid...
Vannavannatta asked 16/6, 2012 at 2:18
2
I have a number of BufferGeometries, which consist a scene, and their meshes have been transferred to different positions. I was wondering if there is a way to export this scene, from meshes, conta...
Carnival asked 29/4, 2016 at 17:30
1
Solved
I'm trying to load an .stl file into three.js. Everything works fine and I get the model as BufferGeometry using this code:
var loader = new THREE.STLLoader();
loader.addEventListener( 'load', f...
Soho asked 31/12, 2014 at 14:28
1
© 2022 - 2024 — McMap. All rights reserved.