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 MappedSet2
create(MappedObject a, MappedObject b)
Creates aMappedSet
by linking the specifiedMappedObject
s.static MappedSet3
create(MappedObject a, MappedObject b, MappedObject c)
Creates aMappedSet
by linking the specifiedMappedObject
s.static MappedSet4
create(MappedObject a, MappedObject b, MappedObject c, MappedObject d)
Creates aMappedSet
by linking the specifiedMappedObject
s.
-
-
-
Method Detail
-
create
public static MappedSet2 create(MappedObject a, MappedObject b)
Creates aMappedSet
by linking the specifiedMappedObject
s.- Returns:
- the mapped set.
-
create
public static MappedSet3 create(MappedObject a, MappedObject b, MappedObject c)
Creates aMappedSet
by linking the specifiedMappedObject
s.- Returns:
- the mapped set.
-
create
public static MappedSet4 create(MappedObject a, MappedObject b, MappedObject c, MappedObject d)
Creates aMappedSet
by linking the specifiedMappedObject
s.- Returns:
- the mapped set.
-
-