Wonder-Technology/Wonder.js

View on GitHub
src/construct/domain_layer/domain/scene/scene_graph/value_object/NormalsVO.res

Summary

Maintainability
Test Coverage
open Js.Typed_array

type t = Normals(Float32Array.t)

let create = value => Normals(value)

let value = normals =>
  switch normals {
  | Normals(value) => value
  }