Earlier quoted context omitted.
You are right, but the same can be said between 85 and 95. The evolution of realtime 3d graphics was insane. From some low FPS 3d line engines to full blown textured 3d engines.
90-96 is big enough. From the NES/Genesis/286 to the Pentium MMX and the multimedia PC playing MPEG videos and games like Quake. In some PC's you could even emulate the Genesis under DOS, and a year later, the NeoGeo fully, which was "the big thing" in the early 90's. A huge step in six years.
Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
91–100 of 112 posts
Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#92Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#93Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#94Earlier quoted context omitted.
The original thread was about nurbs not being used anymore over polygons. Displacement doesn't change the equation between polygons and nurbs of course because they both go in as high level primitives. Hair is a its own thing of course. I know you know this, but I think a lot of people missed the original point.
You keep saying “polygons”. Are you talking about subdivision surfaces? Films don’t model in “polygons”. Subdivision surfaces are a curved surface representation, not “polygons”. Some people still use NURBS too.
I can promise you they do. They are treated as the same thing. Everyone uses polygons knowing they will be smoothed/subdivided/declared as subdivision surfaces. Sharp edges, cusps and bevels are typically made by creating more subdivisions in the actual model instead of using extra subdiv data on the geometry, though pixar might be the exception.
> Some people still use NURBS too.
I think this is very rare. Maybe blue sky never transitioned away.
Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#95Earlier quoted context omitted.
How would that make it easier to work with?
You can do things like take shape A and then subtract shape B from it and all works, no matter how complex the intersection.
Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#96Earlier quoted context omitted.
When you are inside a time or period not a lot of change is felt, but once you look back you can see incredible changes. You mention that last 20 years are dull. I think that the last 10 years are the era of smart phone revolution. A pretty big thing. Certainly belongs in the top 50 most impactful inventions and adoptations in human history. In 200 years from now the late 00s will be seen as the start of global conne…
I haven't felt a lot of incredible changes in the last ten years. In 2010 I had an iPhone 4, and I don't think there is a major qualitative difference between it and the latest smartphones. The computing performance may have improved since, but apart from loading increasingly bloated websites faster and allowing for higher-quality photographs, I haven't felt any major changes. Otherwise, the changes in lifestyle sinc…
Now almost everyone does that. That’s the difference.
Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#97Wow, the state of the art in 3D rendering has changed dramatically. The state of the art in open source 3D rendering has changed even more dramatically. Compare these screenshots from 2013 (although I think POV-Ray was looking pretty dated by then) to renders that come out of Blender's Cycle renderer now. The big change is that everyone has moved to "physically based rendering" that do path-tracing for propagating li…
http://hof.povray.org/mouille.html Year 2000. You don't know a lot, and I guess you didn't have a look on the PovRay's hall of fame.
Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#98Earlier quoted context omitted.
The original thread was about nurbs not being used anymore over polygons. Displacement doesn't change the equation between polygons and nurbs of course because they both go in as high level primitives. Hair is a its own thing of course. I know you know this, but I think a lot of people missed the original point.
You keep saying “polygons”. Are you talking about subdivision surfaces? Films don’t model in “polygons”. Subdivision surfaces are a curved surface representation, not “polygons”. Some people still use NURBS too.
Some of the studios still don't even bother with crease weights and still "double-stop" ends with extra vertices/faces to create hard edges.
My original point was that it is possible to render subdivision surfaces without dicing down to micropolygon (i.e. you approximate the limit surface with Gregory Patches or something), but only if you don't have displacement: as soon as you need displacement, you pretty much need to dice down to micropolygons, and in this scenario, the geometry representation can be extremely expensive in memory with large scenes.
Re: Ray Tracing with POV-Ray: 25 scenes in 25 days (2013)
#99Earlier quoted context omitted.
If you ran exactly the same code on a modern machine I'd say that's a pretty reasonable guess. You'd get a big speedup just by going from single-threaded to multi-threaded execution. Probably the biggest boost would be to use modern methods. It's possible to do path tracing at interactive frame-rates on modern hardware; some of the optimizations can include not doing very many samples per pixel but to rely on denoisi…
I doubt you'll get any speedup from multi-threaded execution, unless it is also multi-core.
(Or are you talking about the difference between “multi-threaded execution” and “multi-core execution”? That wouldn’t make sense. Threads are how you execute code on multiple cores.)