Skip to content

Commit

Permalink
Update Renderer.h
Browse files Browse the repository at this point in the history
  • Loading branch information
mhscott committed Sep 26, 2021
1 parent 283c98c commit 0b679a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SRC/renderer/Renderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ class Renderer
virtual int drawPoint(const Vector &, const Vector &rgb1, int tag = 0, int mode = 0, int width = 1) =0;

virtual int drawLine(const Vector &, const Vector &,
float V1, float V2, int tag = 0, int mode = 0) ;// =0;
float V1, float V2, int tag = 0, int mode = 0) =0;
virtual int drawLine(const Vector &end1, const Vector &end2,
const Vector &rgb1, const Vector &rgb2,int tag = 0, int mode = 0) ;//=0;
const Vector &rgb1, const Vector &rgb2,int tag = 0, int mode = 0) =0;

virtual int drawCube(const Matrix &points, const Vector &values, int tag = 0, int mode = 0);

Expand Down Expand Up @@ -102,7 +102,7 @@ class Renderer

virtual int setProjectionMode(const char *mode) =0; //parallel or perspective
virtual int setFillMode(const char *mode) =0; // wire or fill
virtual int setLineWidth(int width) ;// = 0; // line width
virtual int setLineWidth(int width) =0; // line width

virtual int setPRP(float u, float v, float n) =0; // eye location if
// perspective, dirn to +ViewPlane if parallel
Expand Down

0 comments on commit 0b679a2

Please sign in to comment.