Example #1
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);
 }
Example #2
0
 public Options_editor(Options options)
 {
     InitializeComponent();
     this.options = options;
     this.build_gui();
 }