Sunday, 3 January 2010

Inspiration


Amazing imagery. Picked up this bargin 4 disc pack.

Monday, 28 December 2009

PTC BASED INDIRECTDIFFUSE - COLOUR BLEED

Bumped this over from the 3delight forum as well. Cheers Baopao


This is my way for ptc based indirectdiffuse() with 3dl 9.0.0.

http://www.alessandrodallafontana.com/p … p_mall.htm

here you will find 3 shaders.

I use standard maya shader.
I create a render pass for bake with in PreWorldMel:

RiAttribute -n "cull" -p "hidden" "integer" "0" -p "backfacing" "integer" "0";
RiAttribute -n "dice" -p "rasterorient" "integer" "0";

in advance render:

all AOV
standar atmophere on

create a shader collection override with the shader: ptc_surface_bake (bleeding color is fake autoilluminate color and in i_Ci I use 3 so diffuse light is multiply for 3).


create a Beauty render pass, in advance render:

all AOV
standar atmophere on

create a shader collection override with the shader: ptc_surface_bleeding

this shader have also a occlusion pass for details…. and read the aov_camera_normal of standard maya shader for bump effect.

and have the possibility of bake another ptc map for use after for reflection blur ptc based or convert in brickmap for read in the other volume shader: brikmap_read (only read the "_radiosity" info), or second indirectdiffuse pass.....
P.S. the aov for multipass rendering are: aov_ambient aov_occlusion aov_envcolor (this one is a custom pass, and write only the envcolor from envmap).

ALL SUGGEST ARE WELCOM…. :)
ciao

IBL PTC Shaders/Scene

Bumped this over from the forum. Matthieu BarbiƩ has generously supplied shaders and example scene for IBL PTC technique.

http://rapidshare.com/files/314426039/Project_IBL.rar

3delight 9.0 New Version

Santa arrived early this year...

10.12.2009

3Delight 9.0 and 3Delight for Maya 5.0 released

This release includes support for unlimited threads, multi-camera rendering, improved point-based occlusion both in quality and speed and a wealth of other performance improvements. 3Delight for Maya now comes with major performance improvements to the Relationship Editor, added support for many useful Hypershade nodes and improved UI for the display driver and the Relationship Editor. 3Delight for Maya also introduces RIB Fragments: a user-friendly and flexible way of creating and managing RIB archives.

Renderman.org site down

Went to download some old siggraph papers - looks like the domain is out of use.

Monday, 24 August 2009

Machine, a short film

The developers of 3delight are helping these guys with some sponsorship for their short.click for more..

Sunday, 23 August 2009

Sorbetto Relighting Tool

Ok if you don't have access to Pixar relighting toolset lpics like this...Sorbetto is a nice relighting tool which seems to be similar. It comes as part of the Gelato renderer.
Its FREE so no harm in giving it a go...A proviso is you will need to have a suitable nvidia graphics card.

Sunday, 17 May 2009

3delight 8.5 Out Now

Info (Copy and Paste)

This release includes support for RSL 2.0 (shader objects and co-shaders) and further ray-tracing optimizations that should give significant performance gains when rendering displacements and motion-blur. 3Delight For Maya includes a new relationship editor to quickly explore and assign shaders and attributes as well as new "edge rounding" features to easily bevel edges on polygonal geometry.

Saturday, 7 March 2009

FREE plugins for HDR Shop 1.0.3

http://www.banterle.com/francesco/download.html Banty's Toolkit 1.5 Beta- go get it

Sunday, 25 January 2009

IBL & HDR Tutorials

Hi luke,

I saw my tutorials in your blog...I have also IBL and HDR system tutorials in my blog:

http://comacchio.blogspot.com/2008_06_01_archive.html

if you want, you can use it.

bye, Luciano


another one...

http://www.3delight.com/en/modules/PunBB/viewtopic.php?id=934

bye, Luciano

++++++++++++++++++++++++++++++++++ Cheers Luciano --- tuck in everybody..............

Sunday, 23 November 2008

zdepth in 3delight

Hello Atom,
I am new to 3delight as i've been using m.ray for a long, long time. I was wounding if u have a moment to explain in the basic terms how to set up z depth that would give me optimal results in 3Dlight ? Any help would be much appreciated.
With Respect Dantes.

-------------------------
Hi Dantes, who is atom? apologies in answering your email so late
try this.

1) select in secondary Displays in 3delight renderpass - Display AOV - luminance depth
2) set the far clip plane close enough under the camera attributes to a suitable distance. maybe the distance of the furthest geometry.
........... or
or use a 32bit z pass and extract the data you need in your compositing tool - you have much more control :) - swag

AMBIENT OCCLUSION POINT CLOUDS with deformations

AMBIENT OCCLUSION POINT CLOUD BAKING

1. Attach ptc_write shader to geometry, put in output name in eg "scene.ptc"
2. set attribute on geometry in 3delight- cull hidden surfaces, cull backfacing surfaces, raster orientated dicing to off
3. set up camera view to encompass the geometry
4. Render settings: Quality - Pixel Samples 1,1 Pixel Filter - Box Filter
, top camera. the quality can be cack cause your outputting the point cloud.
5. Render out .ptc file
6 Open ptc view and have a look at the .ptc file. spin it around like a crazy fool.
5 create bkm ( brickmap) file from ptc on command line put in ptc2brick "C:\scene.ptc" "C:\scene.bkm"
There other commands you can put in to vary quality etc, but that will get you going.
6, Attach bake_occlusion_Pref shader to geometry. Put in scene.bkm into the shader.
7 set bias in shader low to avoid white creases
, set the other setting how you see fit.
8. set attribute on geometry - cull hidden surfaces, cull backfacing surfaces, raster orientated dicing to on
set 3delight geometry attribute Visibilty to diffuse Rays(occlusion) Shader Color & opacity
10 Reset the rendering quality setting to the default or whatever you want.
11 Render

additional


POINT CLOUD BAKING FOR GEOMETRY THAT IS GOING TO DEFORM
1) Select Geometry - Maya Menu - Rendering - Texturing - Create Texture ref object.
2) Add attribute Reference Geometry in 3delight, output Pref, output Nref

3) Follow steps 2-10 above

shader (modified following instructions by mkesson, check out the 2 previous entry)

surface
bake_occlusion_Pref
(
string bake_file = "";
float maxtDist = 1;
float samples = 64;
float bias = 0.05;
varying point Pref=(0,0,0);
)
{
extern point Pref;
extern normal N;
normal Nn = normalize(N);
color ao = occlusion ( Pref, Nn, samples, "maxdist", maxtDist, "bias", bias );
ao = 1 - ao;
bake ( bake_file, s, t, ao );
Ci = ao;
Oi = 1;
}

Wednesday, 1 October 2008

aovs for compositing

Leos got some shaders for y'all

Wednesday, 2 July 2008

PRMAN NOTES

App notes for Pixars Renderman, includes good stuff on point clouds and Brickmaps, Caustics and Global Illumination

Friday, 27 June 2008

simple occlusion pass.

bumped this over from the 3delight forum - thanks luciano

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Hi,
this is my basic tutorial for a simple occlusion pass.

simple deep shadows workflow...

bumped this over from the 3delight forum - thanks luciano

++++++++++++++++++++++++++
Hi guys,
this is my basic tutorial for a simple deep shadows workflow...special thanks for olivier, jmxd and lazzhar for help me (post of colored shadows).

Wednesday, 4 June 2008

update

ok the web address for the book is www.rslprogramming.com

Monday, 24 March 2008

New Book


I ponied up for this book. Put together by Rudy from RendermanAcademy fame and Saty Raghavachary,I would say its worth your time. Only minus point is there isnt a included CD-ROM or website that works with all the shaders. Apart from that ace.

Saturday, 23 February 2008

3Delight Video Tutorials

If your not sure how to use 3delight - theres really no excuse now :)

http://www.3delight.com/en/index.php/products/3delight_for_maya/tutorials

which were put together by paolo, check his website out too.

http://www.jupiter-jazz.com/trixr4kids/3delightedition/Author.html

Tuesday, 18 December 2007

3Delight 7.0 and 3Delight For Maya 3.0 released

This is a blatant copy and paste!!!


Original message via Google News.
Remember that the first full license of the renderer is free!
Some of the most important features and improvements:

3Delight

Rendering Features

* New Image Based Lighting Algorithm. A more flexible and powerful approach to image based lighting is introduced.
* Point Based Occlusion and Color Bleeding.
* Brick Maps (3D Textures) for efficient and anti-aliased 3D data lookup.
* Display subsets. A unique feature that enables rendering of many layers, each with its own alpha channel and output variables, in one render pass.

Performance

* Multi-threading efficiency has been improved for scenes with high depth complexity.
* Point cloud files are not read in memory all at once any more: proper caching enables memory-efficient access to point cloud data.
* Subsurface scattering has been optimized and the pre-processing step is now run in multi-threaded mode.
* Deep Shadow Map creation is now multi-threaded.
* occlusion() and indirectdiffuse() have been accelerated through the use of adaptive sampling.

Texture Converter (tdlmake)

* A new -preview option makes textures appear as TIFFs of lower resolution to software such as Maya; this enables you to use a single texture for both Maya previews and final renders. Additionally, tdlmake now supports the TARGA file format.

New Tools

* ptc2brick is a tool to convert point cloud files to brick maps.
* ptcview is a tool to view point cloud files.
* ptcmerge is a tool to merge point cloud files.

Pipeline

* A new API to access point cloud files is available.
* A more advanced C++ API for DSO plug-ins is available.

3Delight For Maya

* The plug-in is better integrated into Maya. It now registers itself as a standard Maya renderer and is thus accessible through the Render Settings. Batch rendering and command line rendering (through the standard Maya Render command) is now possible.

* Improved HyperShade Translation:
o 3Delight For Maya tracks HyperShade network modifications and only translates and compiles shaders which have changed.
o The following hypershade nodes are now supported: ocean, remapValue, lightInfo, layeredTexture and volumeLight.
o The Image Sequence options of the File texture node are now upported.
o HyperShade networks for light sources are correctly translated into their RenderMan SL equivalent.
o The RenderMan Code shader can now declare output variables and those can be output using secondary displays (advanced).

* Support for RIB archives creation and reading using a user friendly, yet flexible, interface.
* Out-of-the-box support for Shave & a Haircut and much improved Maya Fur support.
* Object Instancers are fully supported.
* Shadow Maps can be rendered using arbitrary cameras. This allows for better shadow map view framing and thus better quality.
* More output variables added to secondary displays.
* Maya 2008 support.

The 3Delight Team
(www.3delight.com)

Sunday, 7 October 2007

Pixar on-line library

More pixar goodness.

http://graphics.pixar.com/