lib/robot/robot_mesh.ex

defmodule Robot.Mesh do
    @moduledoc """
    Robot Mesh struct
    
    points: [], indices: [], translates: [], rotates: []
    """
    defstruct points: [], indices: [], translates: [], rotates: []
end