vogle_tek(vogle) Vogle vogle_tek(vogle)
NAME
vogle_tek - a VOGLE renderer with a Tektronix 4014 device
driver
DESCRIPTION
The vogle_tek class renders an image defined with LYMB
objects (camera, lights, actors and modellers) using the
public domain VOGLE rendering library on a Tektronix 4014
compatible terminal.
SUPERCLASS
vogle_tek
MESSAGES
device_name?
Returns the string "tek".
EXAMPLES
The following LYMB script demonstrates how an image is
defined in LYMB. A camera is created which describes the
view. A light is created which provides illumination. A
geometric object is defined using a modeller and an actor.
Finally, a renderer is created and informed about the elements (camera, light, actor) that comprise the image. The
image is drawn by sending a render! to the rendering
instance.
camera new: acamera
position=(8,8,8)
focal_point=(0.0,0.0,0.0)
view_angle=30
on!
;
light new: alight
position=(10,5,8)
on!
;
cylinder_modeller new: cylinder_model;
actor new: cylinder
color=(1,0,0)
modeller=cylinder_model
;
vogle_tek new: arenderer
actors=cylinder
cameras=acamera
lights=alight
;
arenderer render!;
SEE ALSO
actor, camera, light, renderer, model, phigs, gl, starbase, vogle_modeller, vogle_curses, vogle_ps, vogle_sun,
vogle_x11
NOTES AND BUGS
Tektronix devices do not support double buffering.
Please send comments and suggestions toconsult@rpi.edu