X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=csgray;a=blobdiff_plain;f=src%2Fcsgray.h;h=154ca5d2fba17f6ae54a1fc9c390d6006f646718;hp=651b64e52036564c822203b593996141e3631f16;hb=3dd5ba3e29ccff62d188bb4e9e8d23d1879a6024;hpb=d7bf88ecc329f85167bcb420909773ba21078001 diff --git a/src/csgray.h b/src/csgray.h index 651b64e..154ca5d 100644 --- a/src/csgray.h +++ b/src/csgray.h @@ -12,8 +12,8 @@ void csg_fov(float fov); int csg_load(const char *fname); int csg_save(const char *fname); -void csg_add_object(csg_object *parent, csg_object *child); -void csg_remove_object(csg_object *parent, csg_object *child); +void csg_add_object(csg_object *o); +int csg_remove_object(csg_object *o); void csg_free_object(csg_object *o); csg_object *csg_null(float x, float y, float z); @@ -26,12 +26,14 @@ csg_object *csg_union(csg_object *a, csg_object *b); csg_object *csg_intersection(csg_object *a, csg_object *b); csg_object *csg_subtraction(csg_object *a, csg_object *b); +void csg_ambient(float r, float g, float b); + void csg_emission(csg_object *o, float r, float g, float b); void csg_color(csg_object *o, float r, float g, float b); void csg_roughness(csg_object *o, float r); void csg_opacity(csg_object *o, float p); -void csg_render_pixel(int x, int y, float *color); +void csg_render_pixel(int x, int y, int width, int height, float aspect, float *color); void csg_render_image(float *pixels, int width, int height); #endif /* CSGRAY_H_ */