22-08-2009, 06:48 PM
The only thing it does not support that MS does is DX7,8,9 but thats because its cross platform. So figuring out a way to implement a proper graphics engine is the hardest and only problem.
[edit]
figured it out. Dont know why I thought they would make a vb6 like java and not let you use the java framework, its just a little different to is in jabaco
you can use Java3D through something like this:
[edit]
figured it out. Dont know why I thought they would make a vb6 like java and not let you use the java framework, its just a little different to is in jabaco
you can use Java3D through something like this:
Code:
Dim universe as com#sun#j3d#utils#universe#SimpleUniverse
dim myColorCube as com#sun#j3d#utils#geometry#ColorCube
dim group as javax#media#j3d#BranchGroup
Sub Hello3d
universe = new SimpleUniverse()
group = new BranchGroup()
group.addChild(new ColorCube(0.3))
universe.getViewingPlatform().setNominalViewingTransform()
universe.addBranchGraph(group);
End Sub