Esempio n. 1
0
 public Camera_editor(Camera camera)
 {
     InitializeComponent();
     //this.camera = camera;
     this.camera = camera;
     this.build_gui();
 }
Esempio n. 2
0
 public Renmas(Image output_image)
 {
     int ret = Init();//throw exception if error ocured!!!
     if (ret != 0) throw new Exception("Interface to renmas if failed to create.");
     this.camera = new Camera(this);
     this.options = new Options(this);
     this.lights = new Lights(this);
     this.shapes = new Shapes(this);
     this.output_image = output_image;
     this.tone_mapping_operators = new ToneMappingOperators(this);
     this.materials = new Materials(this);
 }