Current section
Files
Jump to
Current section
Files
lib/geometry/temporal/vec3t.ex
defmodule Tesseract.Geometry.Temporal.Vec3t do
alias Tesseract.Math.Vec3
@type t :: {number, Vec3.t()}
@spec make(number, Vec3.t()) :: t()
def make(t, v) do
{t, v}
end
end