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

com.oculusvr.capi.FovPort Maven / Gradle / Ivy

There is a newer version: 1.8.0.0
Show newest version
package com.oculusvr.capi;

import java.util.Arrays;
import java.util.List;

import com.sun.jna.Pointer;
import com.sun.jna.Structure;

/**
 * native declaration : /usr/include/stdint.h
* 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 FovPort extends Structure { public float UpTan; public float DownTan; public float LeftTan; public float RightTan; public FovPort() { super(); } @Override protected List getFieldOrder() { return Arrays.asList("UpTan", "DownTan", "LeftTan", "RightTan"); } public FovPort(float UpTan, float DownTan, float LeftTan, float RightTan) { super(); this.UpTan = UpTan; this.DownTan = DownTan; this.LeftTan = LeftTan; this.RightTan = RightTan; } public FovPort(Pointer peer) { super(peer); } public static class ByReference extends FovPort implements Structure.ByReference { }; public static class ByValue extends FovPort implements Structure.ByValue { public ByValue(FovPort fovPort) { super(fovPort.UpTan, fovPort.DownTan, fovPort.LeftTan, fovPort.RightTan); } }; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy