Interface MutableVertexList

All Superinterfaces:
VertexList
All Known Subinterfaces:
DefaultVertexList, VertexView
All Known Implementing Classes:
AbstractVertexView, FullVertexView, NoOverlayVertexView, PosTexNormalVertexView, PosVertexView

public interface MutableVertexList extends VertexList
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    a(int index, float a)
     
    void
    b(int index, float b)
     
    void
    g(int index, float g)
     
    void
    light(int index, int light)
     
    void
    normalX(int index, float normalX)
     
    void
    normalY(int index, float normalY)
     
    void
    normalZ(int index, float normalZ)
     
    void
    overlay(int index, int overlay)
     
    void
    r(int index, float r)
     
    void
    u(int index, float u)
     
    void
    v(int index, float v)
     
    void
    x(int index, float x)
     
    void
    y(int index, float y)
     
    void
    z(int index, float z)
     

    Methods inherited from interface dev.engine_room.flywheel.api.vertex.VertexList

    a, b, g, isEmpty, light, normalX, normalY, normalZ, overlay, r, u, v, vertexCount, write, write, writeAll, x, y, z
  • Method Details

    • x

      void x(int index, float x)
    • y

      void y(int index, float y)
    • z

      void z(int index, float z)
    • r

      void r(int index, float r)
    • g

      void g(int index, float g)
    • b

      void b(int index, float b)
    • a

      void a(int index, float a)
    • u

      void u(int index, float u)
    • v

      void v(int index, float v)
    • overlay

      void overlay(int index, int overlay)
    • light

      void light(int index, int light)
    • normalX

      void normalX(int index, float normalX)
    • normalY

      void normalY(int index, float normalY)
    • normalZ

      void normalZ(int index, float normalZ)