Request for help from newbie regarding converting polyhedron to wireframe

Post here for help on using FreeCAD's graphical user interface (GUI).
Forum rules
and Helpful information
IMPORTANT: Please click here and read this first, before asking for help

Also, be nice to others! Read the FreeCAD code of conduct!
bonomo
Posts: 22
Joined: Wed Jul 06, 2022 8:29 pm

Request for help from newbie regarding converting polyhedron to wireframe

Post by bonomo »

Hello!

I installed FreeCAD motivated by a need to perform a particular task. Being new, I am quite clueless as to how to do certain things.

I have a STEP file for Goldberg Polyhedron (which I think of as a hex-pent sphere). I would like to eliminate the surfaces, and leave a wireframe. I do NOT mean to to simply DISPLAY a wireframe, but to convert the object itself to a wireframe object. In principle, it should be possible to do this by editing the STEP file (as it is all text), but that would require developing a deep knowledge of the STEP file entities. I am guessing it would be easier to do this via CAD program.

1. How does one carry out this particular task (delete the faces; leave a wireframe)?
2. I find that I cannot scale the object imported from the STEP file except by creating "clone" objects. However, one apparently cannot delete the original object after copying and scaling the clones. If one uses the cloned/scaled wireframes as part of a final object that will be, eventually, 3-D printed, how does one deal with the no-longer wanted original imported object?

Thank you.
Richard Bonomo

Code: Select all

OS: macOS 10.16
Word size of FreeCAD: 64-bit
Version: 0.20.29177 (Git)
Build type: Release
Branch: (HEAD detached at 0.20)
Hash: 68e337670e227889217652ddac593c93b5e8dc94
Python 3.9.13, Qt 5.12.9, Coin 4.0.0, Vtk 9.1.0, OCC 7.5.3
Locale: C/Default (C)
Installed mods: 
  * Help 1.0.3
edwilliams16
Veteran
Posts: 3179
Joined: Thu Sep 24, 2020 10:31 pm
Location: Hawaii
Contact:

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by edwilliams16 »

Not much we can do without the STEP file.
User avatar
Willem
Veteran
Posts: 1854
Joined: Fri Aug 12, 2016 3:27 pm
Location: Lisse, The Netherlands

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by Willem »

Welcome to the forum.
In Freecad is also an Addin workbench for polyhedrons, so you can make a new parametric polyhedron
User avatar
thomas-neemann
Veteran
Posts: 11915
Joined: Wed Jan 22, 2020 6:03 pm
Location: Osnabrück DE 🇩🇪
Contact:

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by thomas-neemann »

bonomo wrote: Wed Jul 06, 2022 8:46 pm ...

draft downgrade can do that. can be seen from min 0:58

https://www.youtube.com/watch?v=XKhlh5V24f4

phpBB [video]
Gruß Dipl.-Ing. (FH) Thomas Neemann

https://www.youtube.com/@thomasneemann5 ... ry=freecad
bonomo
Posts: 22
Joined: Wed Jul 06, 2022 8:29 pm

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by bonomo »

edwilliams16 wrote: Thu Jul 07, 2022 2:51 am Not much we can do without the STEP file.
Oh, I can certainly supply it if someone wants to take a stab on it on my behalf, but I was first looking for some advice as to feasibility and procedure.

RB
bonomo
Posts: 22
Joined: Wed Jul 06, 2022 8:29 pm

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by bonomo »

Willem wrote: Thu Jul 07, 2022 5:28 am Welcome to the forum.
In Freecad is also an Addin workbench for polyhedrons, so you can make a new parametric polyhedron
Do you know if this Add-In is able to produce actual wire-frame polyhedra, or just things with faces?

Rich
User avatar
onekk
Veteran
Posts: 6205
Joined: Sat Jan 17, 2015 7:48 am
Contact:

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by onekk »

Some things to note:

A wireframe is composed of wires, are you aware that is not a Solid?

It could be traced quite easily using a macro or Script iterating through faces and selecting wires to show.

But could be a "compound of wires" as topology seems to not be able to contain an element called wireframe as a single element with coincident edges.

As this hierarchy.

A "closed" wire could make a face
A "connected" faces could make a shell
A "closed" shell could make a Solid. (Call it maybe manifold or watertight)

So probably once you have a bunch of wires, main concern is what you want to use them for?

I'm a "normal user" so probably I'm wrong on some manner.

Regards

Carlo D.
GitHub page: https://github.com/onekk/freecad-doc.
- In deep articles on FreeCAD.
- Learning how to model with scripting.
- Various other stuffs.

Blog: https://okkmkblog.wordpress.com/
User avatar
adrianinsaval
Veteran
Posts: 5551
Joined: Thu Apr 05, 2018 5:15 pm

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by adrianinsaval »

Use draft downgrade to go from a solid to a face to a wire to an edge.
bonomo
Posts: 22
Joined: Wed Jul 06, 2022 8:29 pm

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by bonomo »

thomas-neemann wrote: Thu Jul 07, 2022 6:31 am
bonomo wrote: Wed Jul 06, 2022 8:46 pm ...

draft downgrade can do that. can be seen from min 0:58

https://www.youtube.com/watch?v=XKhlh5V24f4

phpBB [video]
Thank you! Yes, the draft-->downgrade did manage to deal with the face-to-wireframe-conversion part of my query!

RB
bonomo
Posts: 22
Joined: Wed Jul 06, 2022 8:29 pm

Re: Request for help from newbie regarding converting polyhedron to wireframe

Post by bonomo »

onekk wrote: Thu Jul 07, 2022 4:17 pm Some things to note:

A wireframe is composed of wires, are you aware that is not a Solid?

It could be traced quite easily using a macro or Script iterating through faces and selecting wires to show.

But could be a "compound of wires" as topology seems to not be able to contain an element called wireframe as a single element with coincident edges.

As this hierarchy.

A "closed" wire could make a face
A "connected" faces could make a shell
A "closed" shell could make a Solid. (Call it maybe manifold or watertight)

So probably once you have a bunch of wires, main concern is what you want to use them for?

I'm a "normal user" so probably I'm wrong on some manner.

Regards

Carlo D.
Thank you for your response. Yes, I know that a wireframe is not a solid.
I plan to use the wires as the basis for creating other surfaces (other than the original surfaces).

RB
Post Reply