Open
Description
Javacpp creates noarg constructors and expects you use the fluent methods to initialize, e.g.:
new Vector3().x(16).y(8).z(16)
It would be nicer for Java programmers if we could make a constructor so you could do:
new Vector3(16,8,16)
I know how to do this as a helper method, but I don't know how to insert it as a constructor into the generated Raylib.java source.