rock2.pov

来自「It is very for you to learn QT, trust me」· POV 代码 · 共 27 行

POV
27
字号
#include "colors.inc"
#include "shapes.inc"
#include "textures.inc"
// #include "stones.inc"

camera {
	location        <2,2,-6>
	up              <0, 1, 0>
//	right           <4/3, 0, 0>
	look_at         <0,0,0>
}

object { light_source { <10, 5, -5>  color red 1.1 green 1.1 blue 1.0 } }

#declare Rock =
mesh {
 #include "rock.inc"   /* collection of triangle or smooth_triangle data */
}

object {
  Rock
  texture {  pigment {White}  }
  scale 1.9
  rotate <60, 30, 360*clock>
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?