I think the project is still active, but I more or less wrote it so
solve a very basic task and once it was done I haven't had a lot more
things I wanted to do to the core. Most things I've worked on could
be built along side it, instead of into it.
Like most low level 3d engines, pre3d works in planar surfaces. It
happens that I wrote it with quads as the basic primitives, and it
also supports triangles. The reason to support quads is mostly for
performance. If you're talking about curved surfaces, like NURBS,
you'll need to decompose them into quads or triangles.
I played around with some concepts of vector paths in 3d, but I think
there would be a lot of difficulty extending any of that to curved
surfaces.
pre3d backs to the <canvas> tag, it is not an entire drawing library,
it only handles the 3d aspects. If you're interested in accessing or
drawing individual pixels or 2d vector graphics, you can do this
directly on the <canvas> element. If you're interested in drawing 3d
lines, you can do this with the pre3d path support.
Thanks,
-- dean
> --
> You received this message because you are subscribed to the Google Groups "pre3d" group.
> To post to this group, send email to pr...@googlegroups.com.
> To unsubscribe from this group, send email to pre3d+un...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/pre3d?hl=en.
>
>
If you're okay with wireframe instead of lighted 3d objects, you
should be able to easily get something that looks like a globe just
using circles. I'm not sure how chemical compounds are usually
visualized, but when I think about it usually imagine 2d blue-print
style illustrations. You could try to achieve something like this
aesthetic while still allowing 3d navigation by doing it with vectors
in 3d, if that makes sense. For an example, see the slink or spiral
examples.
Hope that was helpful. If you send a link to the type of information
you're trying to visualize, I might be able to help better.
In the end, if you really do need full-blown 3d rendering with good
lighting, etc, I think you'll need to look at WebGL.
Thanks,
-- dean
I don't think it will be possible to achieve that sort of look. I can
see some benefits of the "3d look" for getting a sense of depth and
placement in 3d space. Another half of me can't help but think there
could be a much cleaner and more beautiful flat
mechanical/architectural style illustration that could clearly convey
the same data.
If you did want to try to achieve something like the 3d examples
you've shown, you could get away with doing the spheres with just a 2d
overlay of circles. You'd probably have to deal with depth sorting.
That would also be something you'd have to deal with for the
illustration style also.
I'd probably just use Flash? :\
Good luck!
-- dean