changeset 300:f3dcc1235c79 trunk

[svn] - another 3d preset
author nenolod
date Wed, 22 Nov 2006 22:41:39 -0800
parents ee8246755369
children cf6bd092969d
files ChangeLog src/paranormal/presets/Makefile src/paranormal/presets/nenolod_-_3d_wave.pnv
diffstat 3 files changed, 32 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Nov 22 22:25:50 2006 -0800
+++ b/ChangeLog	Wed Nov 22 22:41:39 2006 -0800
@@ -1,3 +1,12 @@
+2006-11-23 06:25:50 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [652]
+  - add a demo preset for the new programmable scope.
+  
+  trunk/src/paranormal/presets/Makefile               |    1 
+  trunk/src/paranormal/presets/nenolod_-_scopefun.pnv |   26 ++++++++++++++++++++
+  2 files changed, 27 insertions(+)
+
+
 2006-11-23 05:57:19 +0000  William Pitcock <nenolod@nenolod.net>
   revision [650]
   - make linedrawing code support offscreen surfaces more robustly.
--- a/src/paranormal/presets/Makefile	Wed Nov 22 22:25:50 2006 -0800
+++ b/src/paranormal/presets/Makefile	Wed Nov 22 22:41:39 2006 -0800
@@ -4,6 +4,7 @@
 presetsdir = $(pkgdatadir)/paranormal/Presets
 
 OBJECTIVE_DATA = \
+	nenolod_-_3d_wave.pnv:$(presetsdir)		\
 	nenolod_-_purple_flower.pnv:$(presetsdir)	\
 	nenolod_-_bumblebees.pnv:$(presetsdir)		\
 	nenolod_-_flying_into_pastels.pnv:$(presetsdir)	\
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/paranormal/presets/nenolod_-_3d_wave.pnv	Wed Nov 22 22:41:39 2006 -0800
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+
+<paranormal_preset>
+ <container_simple>
+  <container_once>
+   <cmap_bwgradient>
+    <low_index> 0 </low_index>
+    <high_index> 255 </high_index>
+    <color> 0, 191, 255 </color>
+   </cmap_bwgradient>
+  </container_once>
+  <wave_scope>
+   <init_script>  n=7;r=0.5;mx=0;my=0;mz=0;dst=2;rx=0;ry=0;rz=0;rdx=1;rdy=1;rdz=1;p=3.14159265;p2=2.0*p;p3=180/p;  </init_script>
+   <frame_script>  ;rx=rx+rdx;ry=ry+rdy;rz=rz+rdz;xs=sin(rx/p3);ys=sin(ry/p3);zs=sin(rz/p3);xc=cos(rx/p3);yc=cos(ry/p3);zc=cos(rz/p3);  </frame_script>
+   <sample_script>  x1=value*sin(p2*index);y1=value * index / cos(z1);z1=r*cos(p2*index);y2=y1*xc-z1*xs;z2=y1*xs+z1*xc;x2=z2*ys+x1*yc;z3=z2*yc-x1*ys;x3=x2*zc-y2*zs;y3=y2*zc+x2*zs;x4=mx+x3;y4=my+y3;z4=mz+z3;x=x4/(1+z4/dst);y=y4/(1+z4/dst);  </sample_script>
+   <lines> TRUE </lines>
+  </wave_scope>
+  <general_fade>
+   <amount> 10 </amount>
+  </general_fade>
+ </container_simple>
+</paranormal_preset>
\ No newline at end of file