/* * A simple POV-Ray scene that loads and renders a JPatch model. * Change the filename in the #include statement below to the * full path to the JPatch include file. */ camera { location <0,0,-100> look_at <0,0,0> angle 30 } light_source { <-1000,1000,-1000> color rgb 0.8 } light_source { <1000,0,-1000> color rgb 0.4 shadowless } light_source { <0,1000,1000> color rgb 1.2 } union { #include "JPATCH_MODEL.inc" // jpatch include file scale <1,1,1> // change to scale, rotate <0,0,0> // rotate and translate <0,0,0> // move the jpatch model }