Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Jabaco
#5
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:
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
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)