Package org.lwjgl.util.mapped
Class MappedSet
- java.lang.Object
-
- org.lwjgl.util.mapped.MappedSet
-
public class MappedSet extends Object
Factory for mapped sets. A mapped set can be used as a Structure of Arrays by linking together the view of two or more mapped objects. Changing the view of the mapped set, changes the corresponding view of all the mapped objects in the set.
-
-
Constructor Summary
Constructors Constructor Description MappedSet()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MappedSet2create(MappedObject a, MappedObject b)Creates aMappedSetby linking the specifiedMappedObjects.static MappedSet3create(MappedObject a, MappedObject b, MappedObject c)Creates aMappedSetby linking the specifiedMappedObjects.static MappedSet4create(MappedObject a, MappedObject b, MappedObject c, MappedObject d)Creates aMappedSetby linking the specifiedMappedObjects.
-
-
-
Method Detail
-
create
public static MappedSet2 create(MappedObject a, MappedObject b)
Creates aMappedSetby linking the specifiedMappedObjects.- Returns:
- the mapped set.
-
create
public static MappedSet3 create(MappedObject a, MappedObject b, MappedObject c)
Creates aMappedSetby linking the specifiedMappedObjects.- Returns:
- the mapped set.
-
create
public static MappedSet4 create(MappedObject a, MappedObject b, MappedObject c, MappedObject d)
Creates aMappedSetby linking the specifiedMappedObjects.- Returns:
- the mapped set.
-
-