Loading...
Processing Forum
Recent Topics
All Forums
Screen name:
antonio.sejas
antonio.sejas's Profile
1
Posts
0
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Expanded view
List view
Private Message
Load 3D FIles from ArchiCAD (ext: .pln)
[0 Replies]
28-Nov-2011 08:48 AM
Forum:
General Discussion
Hello!,
I need to load a object from Archicad. This file has .PLN extension and I don't know if it is posible!
What files (3ds?, SketchUp ? ...) and how can I load them using Processing.
Some Help?
Thank you very much.
PS. I have found this library but it is broken:
http://labelle.spacekit.ca/supercad/
PS2. And I know how to load a .OBJ but not a .PLN
// Simple OBJ_Import example (also requires peasycam library)
import processing.opengl.*;
import objimp.*;
import peasy.*;
PeasyCam cam;
ObjImpScene scene;
float objectScale = 15;
void setup() {
size( 800,600,OPENGL);
scene = new ObjImpScene(this);
scene.load(dataPath("spheres.obj"),objectScale); // where spheres.obj is your object's name
cam = new PeasyCam(this, 100);
cam.setMinimumDistance(1);
cam.setMaximumDistance(100000);
}
void draw() {
background(200);
perspective(PI/3.0,(float)width/height,1,100000);
scene.draw();
}
void stop() {
super.stop();
}
«Prev
Next »
Moderate user : antonio.sejas
Forum