Package physx.physics
Class PxSweepQueryResult
- java.lang.Object
-
- physx.NativeObject
-
- physx.physics.PxSweepQueryResult
-
public class PxSweepQueryResult extends NativeObject
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class physx.NativeObject
NativeObject.Allocator<T>
-
-
Field Summary
-
Fields inherited from class physx.NativeObject
address, isExternallyAllocated
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedPxSweepQueryResult()protectedPxSweepQueryResult(long address)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddestroy()PxSweepHitgetAnyHit(int index)PxSweepHitgetBlock()booleangetHasBlock()intgetNbAnyHits()intgetNbTouches()bytegetQueryStatus()PxSweepHitgetTouches()NativeObjectgetUserData()voidsetBlock(PxSweepHit value)voidsetHasBlock(boolean value)voidsetNbTouches(int value)voidsetQueryStatus(byte value)voidsetTouches(PxSweepHit value)voidsetUserData(NativeObject value)static PxSweepQueryResultwrapPointer(long address)-
Methods inherited from class physx.NativeObject
checkNotNull, equals, getAddress, hashCode
-
-
-
-
Method Detail
-
wrapPointer
public static PxSweepQueryResult wrapPointer(long address)
-
destroy
public void destroy()
-
getBlock
public PxSweepHit getBlock()
- Returns:
- WebIDL type:
PxSweepHit[Value]
-
setBlock
public void setBlock(PxSweepHit value)
- Parameters:
value- WebIDL type:PxSweepHit[Value]
-
getTouches
public PxSweepHit getTouches()
- Returns:
- WebIDL type:
PxSweepHit
-
setTouches
public void setTouches(PxSweepHit value)
- Parameters:
value- WebIDL type:PxSweepHit
-
getNbTouches
public int getNbTouches()
- Returns:
- WebIDL type: unsigned long
-
setNbTouches
public void setNbTouches(int value)
- Parameters:
value- WebIDL type: unsigned long
-
getUserData
public NativeObject getUserData()
- Returns:
- WebIDL type: any
-
setUserData
public void setUserData(NativeObject value)
- Parameters:
value- WebIDL type: any
-
getQueryStatus
public byte getQueryStatus()
- Returns:
- WebIDL type: octet
-
setQueryStatus
public void setQueryStatus(byte value)
- Parameters:
value- WebIDL type: octet
-
getHasBlock
public boolean getHasBlock()
- Returns:
- WebIDL type: boolean
-
setHasBlock
public void setHasBlock(boolean value)
- Parameters:
value- WebIDL type: boolean
-
getNbAnyHits
public int getNbAnyHits()
- Returns:
- WebIDL type: unsigned long
-
getAnyHit
public PxSweepHit getAnyHit(int index)
- Parameters:
index- WebIDL type: unsigned long- Returns:
- WebIDL type:
PxSweepHit[Const, Ref]
-
-