now when I run this, the coordsys that I draw disappears. Is there something about quickfont that clears the screen at QFont.Begin or QFont.Print, etc... that is causing everything else to disappear?
AltSketch also contains high level classes to operate with fonts (system fonts, custom font files) in System.Drawing.Font style. High level AltSketch render system can draw raster & vectorized outline data.
Comments
Re: OpenTK and fonts
http://www.opentk.com/project/QuickFont
Re: OpenTK and fonts
thanks. took a second but I got it up and running
Re: OpenTK and fonts
Ok, ran into my first issues with QuickFont.
now when I run this, the coordsys that I draw disappears. Is there something about quickfont that clears the screen at QFont.Begin or QFont.Print, etc... that is causing everything else to disappear?
Re: OpenTK and fonts
took some time but I finally figured it out.
using GL.PushAttrib(AttribMask.ColorBufferBit); before
and GL.PopAttrib(); after the Qfont render allowed for both to be drawn, and both bright (I saw some other people had dimming issues)
Re: OpenTK and fonts
You can use AltSketch. It has AltNETType - C# port of FreeType. Look at AltSketch C# vector graphics library
Re: OpenTK and fonts
AltSketch also contains high level classes to operate with fonts (system fonts, custom font files) in System.Drawing.Font style. High level AltSketch render system can draw raster & vectorized outline data.