/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.jme3.bullet.collision.shapes; import com.jme3.export.InputCapsule; import com.jme3.export.JmeExporter; import com.jme3.export.JmeImporter; import com.jme3.export.OutputCapsule; import com.jme3.math.Plane; import com.jme3.math.Vector3f; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; /** * * @author normenhansen */ public class PlaneCollisionShape extends CollisionShape{ private Plane plane; public PlaneCollisionShape() { } /** * Creates a plane Collision shape * @param plane the plane that defines the shape */ public PlaneCollisionShape(Plane plane) { this.plane = plane; createShape(); } public final Plane getPlane() { return plane; } public void write(JmeExporter ex) throws IOException { super.write(ex); OutputCapsule capsule = ex.getCapsule(this); capsule.write(plane, "collisionPlane", new Plane()); } public void read(JmeImporter im) throws IOException { super.read(im); InputCapsule capsule = im.getCapsule(this); plane = (Plane) capsule.readSavable("collisionPlane", new Plane()); createShape(); } protected void createShape() { objectId = createShape(plane.getNormal(), plane.getConstant()); Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId)); // objectId = new StaticPlaneShape(Converter.convert(plane.getNormal()),plane.getConstant()); // objectId.setLocalScaling(Converter.convert(getScale())); // objectId.setMargin(margin); setScale(scale); setMargin(margin); } private native long createShape(Vector3f normal, float constant); }