Replies: 4 comments 12 replies
-
That's great; I'm not really expecting 3MF to make use of most vertex properties anyway since it's for manufacturing. A print ticket is only useful if you know what printer you're sending it to. Likewise with materials - they only make sense if you've gotten some options to display from your print driver. For ManifoldCAD we can keep it simple and focus on creating geometry. |
Beta Was this translation helpful? Give feedback.
-
@elalish I want to ask here cuz it is related to my 3mf effort. I took a bit of spare time to try to add 3mf to manifold but got stuck after pulling code to git. I do not know how to build WASM, or at least download pre-build... I just want to run example web, so I can play with it and try to add 3mf export. |
Beta Was this translation helpful? Give feedback.
-
Just a suggestion: I believe the easiest way to make building portable and
easy for anyone is to do it in a docker container. If you create a docker
file that follows the steps then building would just require the docker run
command.
…On Wed, Jun 28, 2023, 12:26 PM Emmett Lalish ***@***.***> wrote:
Yes, all good points. And yes, the public file additions are intentional,
though you make a good point about adding them to git ignore. In fact
probably the bypass solution you're looking for is to add just those
manually; I'll have to think through the process and document it.
—
Reply to this email directly, view it on GitHub
<#456 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABPYQ2P4KJHIDIURGUFEBGTXNRLK3ANCNFSM6AAAAAAZKNT73A>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
@elalish I need to pick your brain on another related topic regarding 3mf. You have experience with the standard. I am looking to use 3mf to export a whole jscad script including:
Mesh and thumbnail have a standardised way already. Other bits mentioned I would like at least to export in a way that is less likely to break software importing 3mf that only is interested in mesh. Would be nice to also standardise this in the future if deemed beneficial. |
Beta Was this translation helpful? Give feedback.
-
Although I was slow at providing something towards 3mf export, I am curious, other than color, what properties would be useful to export.
I see material can be specified maybe like this ...
Looking at the spec I should place ref to material with the color on the
<object pid="colorff0000">...</object>
My 3mf export is based on data I intercepted before going to GPU
vertices
andindices
. Color I have there there is RGB/RGBA float values, but 3mf uses w3c html colors#rrggbbaa
so exporter will convert it to w3c color and create material for each unique color.I am placing a discussion here as I want to be aligned with manifold with 3mf, to more easily connect my jscad efforts with manifold.
There are things like
PrintTicket
in https://github.com/3MFConsortium/spec_core/blob/master/3MF%20Core%20Specification.md#41-meshes...
Beta Was this translation helpful? Give feedback.
All reactions