/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 2.0.4 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package org.jcae.opencascade.jni; public class GProp_GProps { private long swigCPtr; protected boolean swigCMemOwn; public GProp_GProps(long cPtr, boolean cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = cPtr; } public static long getCPtr(GProp_GProps obj) { return (obj == null) ? 0 : obj.swigCPtr; } protected void finalize() { delete(); } public synchronized void delete() { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; OccJavaJNI.delete_GProp_GProps(swigCPtr); } swigCPtr = 0; } } public GProp_GProps() { this(OccJavaJNI.new_GProp_GProps(), true); } public double mass() { return OccJavaJNI.GProp_GProps_mass(swigCPtr, this); } public double[] centreOfMass() { return OccJavaJNI.GProp_GProps_centreOfMass(swigCPtr, this); } public double[] matrixOfInertia() { return OccJavaJNI.GProp_GProps_matrixOfInertia(swigCPtr, this); } }