
com.bugvm.apple.modelio.MDLVoxelArray Maven / Gradle / Ivy
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bugvm.apple.modelio;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.coregraphics.*;
/* */
/**/
/**
* @since Available in iOS 9.0 and later.
*/
/* */
/**/@Library("ModelIO") @NativeClass/* */
/**/public/* */ class /**/MDLVoxelArray/* */
extends /**/NSObject/* */
/**//* */ {
/**/public static class MDLVoxelArrayPtr extends Ptr {}/* */
/**/static { ObjCRuntime.bind(MDLVoxelArray.class); }/* */
/**//* */
/**/
public MDLVoxelArray() {}
protected MDLVoxelArray(SkipInit skipInit) { super(skipInit); }
public MDLVoxelArray(MDLAsset asset, int divisions, int interiorShells, int exteriorShells, float patchRadius) { super((SkipInit) null); initObject(init(asset, divisions, interiorShells, exteriorShells, patchRadius)); }
public MDLVoxelArray(MDLAsset asset, int divisions, float interiorNBWidth, float exteriorNBWidth, float patchRadius) { super((SkipInit) null); initObject(init(asset, divisions, interiorNBWidth, exteriorNBWidth, patchRadius)); }
public MDLVoxelArray(NSData voxelData, @ByVal MDLAxisAlignedBoundingBox boundingBox, float voxelExtent) { super((SkipInit) null); initObject(init(voxelData, boundingBox, voxelExtent)); }
/* */
/**/
@Property(selector = "count")
public native @MachineSizedUInt long getCount();
@Property(selector = "voxelIndexExtent")
public native @ByVal MDLVoxelIndexExtent getVoxelIndexExtent();
@Property(selector = "boundingBox")
public native @ByVal MDLAxisAlignedBoundingBox getBoundingBox();
/* */
/**//* */
/**/
@Method(selector = "initWithAsset:divisions:interiorShells:exteriorShells:patchRadius:")
protected native @Pointer long init(MDLAsset asset, int divisions, int interiorShells, int exteriorShells, float patchRadius);
@Method(selector = "initWithAsset:divisions:interiorNBWidth:exteriorNBWidth:patchRadius:")
protected native @Pointer long init(MDLAsset asset, int divisions, float interiorNBWidth, float exteriorNBWidth, float patchRadius);
@Method(selector = "initWithData:boundingBox:voxelExtent:")
protected native @Pointer long init(NSData voxelData, @ByVal MDLAxisAlignedBoundingBox boundingBox, float voxelExtent);
@Method(selector = "meshUsingAllocator:")
public native MDLMesh getMesh(MDLMeshBufferAllocator allocator);
@Method(selector = "voxelExistsAtIndex:allowAnyX:allowAnyY:allowAnyZ:allowAnyShell:")
public native boolean voxelExists(VectorInt4 index, boolean allowAnyX, boolean allowAnyY, boolean allowAnyZ, boolean allowAnyShell);
@Method(selector = "setVoxelAtIndex:")
public native void setVoxel(VectorInt4 index);
@Method(selector = "setVoxelsForMesh:divisions:interiorShells:exteriorShells:patchRadius:")
public native void setVoxels(MDLMesh mesh, int divisions, int interiorShells, int exteriorShells, float patchRadius);
@Method(selector = "setVoxelsForMesh:divisions:interiorNBWidth:exteriorNBWidth:patchRadius:")
public native void setVoxels(MDLMesh mesh, int divisions, float interiorNBWidth, float exteriorNBWidth, float patchRadius);
@Method(selector = "voxelsWithinExtent:")
public native NSData getVoxelsWithinExtent(@ByVal MDLVoxelIndexExtent extent);
@Method(selector = "voxelIndices")
public native NSData getVoxelIndices();
@Method(selector = "unionWithVoxels:")
public native void union(MDLVoxelArray voxels);
@Method(selector = "differenceWithVoxels:")
public native void difference(MDLVoxelArray voxels);
@Method(selector = "intersectWithVoxels:")
public native void intersect(MDLVoxelArray voxels);
@Method(selector = "indexOfSpatialLocation:")
public native VectorInt4 indexOfSpatialLocation(VectorFloat3 location);
@Method(selector = "spatialLocationOfIndex:")
public native VectorFloat3 getSpatialLocation(VectorInt4 index);
@Method(selector = "voxelBoundingBoxAtIndex:")
public native @ByVal MDLAxisAlignedBoundingBox getVoxelBoundingBox(VectorInt4 index);
/* */
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy