All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jme3.system.jopenvr.VROverlayIntersectionParams_t Maven / Gradle / Ivy

There is a newer version: 3.7.0-stable
Show newest version
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