KnifeGraphics
acts
as a wrapper class for
LWJGL's OpenGL. It allows users to
draw with LWJGL3 just as they would with Java's native Graphics objects. Methods
such as setColor()
, fillRect()
, and drawImage()
can all be used in KnifeGraphics.
KnifeColor is a custom class that handles any Colors for use with KnifeGraphics.
It acts just like Java's Color class (java.awt.Color
), just with more Colors and
potentially the ability to take more forms of Color values (such as floats, ints,
hexadecimal, and binary representations of Colors).
This is a work in progress as of December 13, 2016
Created by: Knifesurge
Copyright (C) 2017-2018 Nick Mills/Knifesurge
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/
The full license can be found here