add a new sequence: "around"
This commit is contained in:
parent
957fb39ec2
commit
a4025b907f
31
around.pov
Normal file
31
around.pov
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*
|
||||||
|
* H E X A C O N E - A R O U N D
|
||||||
|
* nouveau projet du Thu Dec 5 11:37:05 AM UTC 2024
|
||||||
|
*
|
||||||
|
* scene imaginée le 26 janvier 2026
|
||||||
|
*/
|
||||||
|
|
||||||
|
#version 3.7;
|
||||||
|
|
||||||
|
#include "globals.inc"
|
||||||
|
|
||||||
|
#declare NO_DYNAMIC = 0;
|
||||||
|
#include "all.inc"
|
||||||
|
|
||||||
|
object { Le_Decor }
|
||||||
|
|
||||||
|
// =======================================================
|
||||||
|
|
||||||
|
#declare R_around = 125;
|
||||||
|
#declare CK = 1.9 + (3.141592654 * NormClock);
|
||||||
|
|
||||||
|
#declare CamX = R_around * cos(CK);
|
||||||
|
#declare CamY = 12.777;
|
||||||
|
#declare CamZ = R_around * sin(CK);
|
||||||
|
|
||||||
|
camera {
|
||||||
|
location <CamX, CamY, CamZ>
|
||||||
|
look_at <0, 2, 0>
|
||||||
|
right <image_width/image_height, 0, 0>
|
||||||
|
angle 44
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user