com.jme3.system.jopenvr.VROverlayIntersectionParams_t Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jme3-vr Show documentation
Show all versions of jme3-vr Show documentation
jMonkeyEngine is a 3-D game engine for adventurous Java developers
package com.jme3.system.jopenvr;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
import java.util.Arrays;
import java.util.List;
/**
* native declaration : headers\openvr_capi.h:1535
* This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA.
*/
public class VROverlayIntersectionParams_t extends Structure {
/** C type : HmdVector3_t */
public HmdVector3_t vSource;
/** C type : HmdVector3_t */
public HmdVector3_t vDirection;
/**
* C type : ETrackingUniverseOrigin
*/
public int eOrigin;
public VROverlayIntersectionParams_t() {
super();
}
@Override
protected List getFieldOrder() {
return Arrays.asList("vSource", "vDirection", "eOrigin");
}
/**
* @param vSource C type : HmdVector3_t
* @param vDirection C type : HmdVector3_t
* @param eOrigin @see JOpenVRLibrary.ETrackingUniverseOrigin
* C type : ETrackingUniverseOrigin
*/
public VROverlayIntersectionParams_t(HmdVector3_t vSource, HmdVector3_t vDirection, int eOrigin) {
super();
this.vSource = vSource;
this.vDirection = vDirection;
this.eOrigin = eOrigin;
}
public VROverlayIntersectionParams_t(Pointer peer) {
super(peer);
}
public static class ByReference extends VROverlayIntersectionParams_t implements Structure.ByReference {
};
public static class ByValue extends VROverlayIntersectionParams_t implements Structure.ByValue {
};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy