I tried to run a code snippet for a simple IFC viewer taken from the apstex website in Eclipse and I'm obviously lacking something for the 3D widget but I can't figure out for the life of me what I'm doing wrong. The setup worked and I can read and write models but I can't display them.
This is the code snippet from their website:
JFrame frame = new JFrame("Simple IFC Viewer");
Widget3D widget = new Widget3D();
frame.add(widget);
The Widget3D
can't be referenced, so I'm obviously missing some library or something but my googling didn't produce anything.
Am I lacking something because it's only the demo version? Do I need another API for this?