I am working on an OpenGL project for a computer graphics course, and I have not been actively programming for around a years time (military training). I am drawing an absolute blank on how to include a source file in C#. I know in C++ you use #include . I have no clue how to use the figure class I made in my form.
|
feedback
|
|
Also look at http://www.opentk.com as it is better suited for C#. For example it uses native enums for the OpenGL constants. I usually add a reference
and then in my code I just type
| |||
|
feedback
|
The first option is what actually "includes" the DLL so it can be found. The second step is technically optionally, but without it, you'll need to make every GL call like | |||
|
feedback
|
|
haha, I meant including my own class that I made, but I figured it out. Had to use "using myClass," not the file name. | ||||
|
feedback
|