Show HN: 3D Vector Graphics
31–40 of 60 posts
Re: Show HN: 3D Vector Graphics
#32Have you considered using bilinear gradients to do shading?
Re: Show HN: 3D Vector Graphics
#33Re: Show HN: 3D Vector Graphics
#34Re: Show HN: 3D Vector Graphics
#35This looks pretty great, I'll play with it. Can you explain this from the Readme? Unfortunately, it's difficult to compute the joint formed at the boundaries of these combined shapes, so sufficient texturing is needed on the original solids for a decent result. What is hard about computing the joint? Why does texturing help? My question is from a perspective of curious ignorance, not arrogance (i.e. me saying "don't…
unless you're dealing with sufficiently large integers computing the intersect between a line and a plane with any robustness is impossible on modern computers with float or double. sometimes when you intersect meshes that have nearly coplanar faces, the intersection might shoot vertices near some infinity because of division inaccuracy.
Re: Show HN: 3D Vector Graphics
#36That's pretty cool. A commandline app that just takes an .OBJ file and renders it to an .SVG would actually be pretty useful (viewport position / orientation would of course need to be options as well).
Even cooler if I could figure out some general way of parameterizing & texturing the surface instead of just rendering the triangles. Any ideas?
http://doc.cgal.org/latest/Surface_mesh_parameterization/gro...
http://doc.cgal.org/latest/Surface_mesh_parameterization/Sur...
Re: Show HN: 3D Vector Graphics
#37Re: Show HN: 3D Vector Graphics
#38Re: Show HN: 3D Vector Graphics
#39Question: at the bottom of https://github.com/fogleman/ln/blob/master/ln/matrix.go Did you type that in manually? I wonder if there's a way to do that in Go that doesn't have as much duplication, but has the same performance?