1
Anim8or v0.98 Discussion Forum / Re: Another feature request
« on: September 04, 2011, 03:12:55 am »
or the middle mouse button xD!
it is in the manual
it is in the manual

Ian Ross has just released a book on Anim8or. It's perect for a beginner and a good reference for experienced users. It contains detailed chapters on every aspect, with many examples. Get your own copy here: "Anim8or Tutorial Book"
/* Cube Primitive Plugin by TioDiego */
#plugin("object", "mesh", "cube");
#parameter("side", float, 10, 1, 999, scale);
#return($cube);
#button(32, 32, 2,
0x0000000000, 0x0000000000, 0x0000000000, 0x0000000000,
0x0000000000, 0x00000fffe0, 0x0000100060, 0x00002800a0,
0x0000400120, 0x0000880220, 0x0001000420, 0x0003fff820,
0x0002000820, 0x0002080820, 0x0002000820, 0x0002080820,
0x0002000820, 0x0002080820, 0x0002000820, 0x00020aaaa0,
0x0002100840, 0x0002200880, 0x0002400900, 0x0002800a00,
0x0003000c00, 0x0003fff800, 0x0000000000, 0x0000000000,
0x0000000000, 0x0000000000, 0x0000000000, 0x0000000000);
shape $cube;
float $a;
int $in[8];
point3 $p;
$a = parameter("side")/2;
$cube.Open();
$cube.OpenFace(0,0);
$p.x=$a;
$p.y=$a;
$p.z=-$a;
$in[0]=$cube.AddPoint($p);
$cube.VertexN($in[0]);
$p.x=$a;
$p.y=$a;
$p.z=$a;
$in[1]=$cube.AddPoint($p);
$cube.VertexN($in[1]);
$p.x=-$a;
$p.y=$a;
$p.z=$a;
$in[2]=$cube.AddPoint($p);
$cube.VertexN($in[2]);
$p.x=-$a;
$p.y=$a;
$p.z=-$a;
$in[3]=$cube.AddPoint($p);
$cube.VertexN($in[3]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$p.x=$a;
$p.y=-$a;
$p.z=-$a;
$in[4]=$cube.AddPoint($p);
$cube.VertexN($in[4]);
$p.x=-$a;
$p.y=-$a;
$p.z=-$a;
$in[5]=$cube.AddPoint($p);
$cube.VertexN($in[5]);
$p.x=-$a;
$p.y=-$a;
$p.z=$a;
$in[6]=$cube.AddPoint($p);
$cube.VertexN($in[6]);
$p.x=$a;
$p.y=-$a;
$p.z=$a;
$in[7]=$cube.AddPoint($p);
$cube.VertexN($in[7]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[1]);
$cube.VertexN($in[0]);
$cube.VertexN($in[4]);
$cube.VertexN($in[7]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[2]);
$cube.VertexN($in[1]);
$cube.VertexN($in[7]);
$cube.VertexN($in[6]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[3]);
$cube.VertexN($in[2]);
$cube.VertexN($in[6]);
$cube.VertexN($in[5]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[0]);
$cube.VertexN($in[3]);
$cube.VertexN($in[5]);
$cube.VertexN($in[4]);
$cube.CloseFace();
$cube.Close();
/* Cube Primitive Plugin by TioDiego */I attached a simple paint drawing that explains the order the script works, if someone needs it
#plugin("object", "mesh", "cube");
#parameter("side", float, 10, 1, 999, scale);
#return($cube);
#button(32, 32, 2,
0x0000000000, 0x0000000000, 0x0000000000, 0x0000000000,
0x0000000000, 0x00000fffe0, 0x0000100060, 0x00002800a0,
0x0000400120, 0x0000880220, 0x0001000420, 0x0003fff820,
0x0002000820, 0x0002080820, 0x0002000820, 0x0002080820,
0x0002000820, 0x0002080820, 0x0002000820, 0x00020aaaa0,
0x0002100840, 0x0002200880, 0x0002400900, 0x0002800a00,
0x0003000c00, 0x0003fff800, 0x0000000000, 0x0000000000,
0x0000000000, 0x0000000000, 0x0000000000, 0x0000000000);
shape $cube;
float $a;
int $in[8];
point3 $p;
$a = parameter("side")/2;
$cube.Open();
$cube.OpenFace(0,0);
$p.x=$a;
$p.y=$a;
$p.z=-$a;
$in[0]=$cube.AddPoint($p);
$cube.VertexN($in[0]);
$p.x=$a;
$p.y=$a;
$p.z=$a;
$in[1]=$cube.AddPoint($p);
$cube.VertexN($in[1]);
$p.x=-$a;
$p.y=$a;
$p.z=$a;
$in[2]=$cube.AddPoint($p);
$cube.VertexN($in[2]);
$p.x=-$a;
$p.y=$a;
$p.z=-$a;
$in[3]=$cube.AddPoint($p);
$cube.VertexN($in[3]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$p.x=$a;
$p.y=-$a;
$p.z=-$a;
$in[4]=$cube.AddPoint($p);
$cube.VertexN($in[4]);
$p.x=$a;
$p.y=-$a;
$p.z=$a;
$in[5]=$cube.AddPoint($p);
$cube.VertexN($in[5]);
$p.x=-$a;
$p.y=-$a;
$p.z=$a;
$in[6]=$cube.AddPoint($p);
$cube.VertexN($in[6]);
$p.x=-$a;
$p.y=-$a;
$p.z=-$a;
$in[7]=$cube.AddPoint($p);
$cube.VertexN($in[7]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[0]);
$cube.VertexN($in[1]);
$cube.VertexN($in[5]);
$cube.VertexN($in[4]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[1]);
$cube.VertexN($in[2]);
$cube.VertexN($in[6]);
$cube.VertexN($in[5]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[2]);
$cube.VertexN($in[3]);
$cube.VertexN($in[7]);
$cube.VertexN($in[6]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($in[3]);
$cube.VertexN($in[0]);
$cube.VertexN($in[4]);
$cube.VertexN($in[7]);
$cube.CloseFace();
$cube.Close();
#plugin("object", "mesh", "cube");
#parameter("side", float, 10, 1, 999, scale);
#return($cube);
shape $cube;
float $a;
int $pos[8];
point3 $p;
$a = parameter("side")/2;
$cube.Open();
/* points /*
$p.x=$a;
$p.y=$a;
$p.z=-$a;
$pos[1]=$cube.AddPoint($p);
$p.x=$a;
$p.y=$a;
$p.z=$a;
$pos[2]=$cube.AddPoint($p);
$p.x=-$a;
$p.y=$a;
$p.z=$a;
$pos[3]=$cube.AddPoint($p);
$p.x=-$a;
$p.y=$a;
$p.z=-$a;
$pos[4]=$cube.AddPoint($p);
$p.x=$a;
$p.y=-$a;
$p.z=-$a;
$pos[5]=$cube.AddPoint($p);
$p.x=$a;
$p.y=-$a;
$p.z=$a;
$pos[6]=$cube.AddPoint($p);
$p.x=-$a;
$p.y=-$a;
$p.z=-$a;
$pos[7]=$cube.AddPoint($p);
$p.x=-$a;
$p.y=-$a;
$p.z=$a;
$pos[8]=$cube.AddPoint($p);
/* faces */
$cube.OpenFace(0,0);
$cube.VertexN($pos[1]); /* <----- line 58.
$cube.VertexN($pos[2]);
$cube.VertexN($pos[3]);
$cube.VertexN($pos[4]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($pos[1]);
$cube.VertexN($pos[2]);
$cube.VertexN($pos[5]);
$cube.VertexN($pos[6]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($pos[2]);
$cube.VertexN($pos[3]);
$cube.VertexN($pos[6]);
$cube.VertexN($pos[8]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($pos[3]);
$cube.VertexN($pos[4]);
$cube.VertexN($pos[7]);
$cube.VertexN($pos[8]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($pos[1]);
$cube.VertexN($pos[4]);
$cube.VertexN($pos[5]);
$cube.VertexN($pos[7]);
$cube.CloseFace();
$cube.OpenFace(0,0);
$cube.VertexN($pos[5]);
$cube.VertexN($pos[6]);
$cube.VertexN($pos[7]);
$cube.VertexN($pos[8]);
$cube.CloseFace();
$cube.Close();
/*script para formar un cono*/
#plugin("object", "mesh", "cono");
#parameter("altura", float, 6.0, 1, 999.0, scale, scale_y);
#parameter("radio", float, 6.0, 1.0, 999.0, scale);
#parameter("lados", int, 12, 3, 300);
#return($cono);
#button(31, 31, 2,
0x0000000000, 0x0000000000, 0x0000000000, 0x0000000000,
0x0000600000, 0x0037a00000, 0x001c200000, 0x0019200000,
0x0026400e00, 0x0002403200, 0x0001806200, 0x000181c200,
0x0003810200, 0x00024e0200, 0x0002300200, 0x0003e80200,
0x0000042200, 0x0000020200, 0x0000010400, 0x000000c800,
0x0000006800, 0x0000001800, 0x0000001800, 0x0000002610,
0x0000004390, 0x00000040e0, 0x00000088f0, 0x0000008118,
0x000000fe0f, 0x0000000000, 0x0000000000);
shape $cono;
int $h, $h2;
float $i, $j, $k, $z, $pi;
point3 $p;
$pi=3.14159265;
$z = parameter("altura");
$i = parameter("radio");
$j = parameter("lados");
int $pos[1];
$j = 2*$pi/$j;
$k = 0;
$cono.Open();
$p.x = 0;
$p.y = $z;
$p.z = 0;
$pos[0]=$cono.AddPoint($p);
while($k<2*$pi){
$p.x = $i*cos($k);
$p.y = 0;
$p.z = $i*sin($k);
$h = $pos.push($cono.AddPoint($p));
$k = $k + $j;
}
$h2=$h;
while($h>1){
$cono.OpenFace(0,0);
$cono.VertexN($pos[0]);
$cono.VertexN($pos[$h]);
$cono.VertexN($pos[$h-1]);
$h = $h - 1;
$cono.CloseFace();
}
$cono.OpenFace(0,0);
$cono.VertexN($pos[0]);
$cono.VertexN($pos[$h]);
$cono.VertexN($pos[$h2]);
$cono.CloseFace();
$cono.Close();
/*script para formar un cono*/
#plugin("object", "mesh", "cono");
#parameter("altura", float, 6.0, 0.1, 500.0, scale, scale_y);
#parameter("radio", float, 6.0, 1.0, 500.0, scale);
#parameter("lados", int, 12, 6, 60);
#return($cono);
#button(31, 31, 2,
0x0000000000, 0x0000000000, 0x0000000000, 0x0000000000,
0x0000600000, 0x0037a00000, 0x001c200000, 0x0019200000,
0x0026400e00, 0x0002403200, 0x0001806200, 0x000181c200,
0x0003810200, 0x00024e0200, 0x0002300200, 0x0003e80200,
0x0000042200, 0x0000020200, 0x0000010400, 0x000000c800,
0x0000006800, 0x0000001800, 0x0000001800, 0x0000002610,
0x0000004390, 0x00000040e0, 0x00000088f0, 0x0000008118,
0x000000fe0f, 0x0000000000, 0x0000000000);
shape $cono;
int $k;
float $i, $j, $z;
point3 $p;
$z = parameter("altura");
$i = parameter("radio");
$k = parameter("lados");
int $pos[$k];
$j = 360/$k;
$k = 0;
$h = 1;
$cono.Open();
$p.x = 0;
$p.y = $z;
$p.z = 0;
$pos[0]=cono.AddPoint($p);
while($k<=360){
$p.x = $i*cos($k);
$p.y = 0;
$p.z = $i*sin($k);
$pos[$h]=$cono.AddPoint($p);
$k = $k + $j;
$h = $h + 1;
}
while($h+1>=0){
$cono.OpenFace(0,0);
$cono.VertexN($pos[0]);
$cono.VertexN($h);
$cono.VertexN($h-1);
$h = $h - 1;
$cono.CloseFace();
}
$cono.Close();