Dennis Borree wrote:
>
> I am very new at using POV-RAY 3.1g. I have found bolts.inc and am having
> trouble getting it to make bolts. There is no instructions on how to use it.
> I have put it in #include "bolts.inc" but do not know how to get it to make
> a bolt. Any help found be greatly appreciated.
> Thanks in advance,
> Dennis Borree
Usually when you use an include file you need to find a #declared object
within that file and use it in your scene illustrated with the example
below (the name I use below may not be the name in the include file) -
#include "bolts.inc"
object { Bolt }
If the include file does not provide a default texture or pigment then
you will need to provide one yourself -
#include "bolts.inc"
object { Bolt texture { Bolt_Texture } }
If you can't figure it out yourself then send me a copy of the include
file via email and I will send you back a working example to get you
started.
Cheers,
--
Ken Tyler
Post a reply to this message
|