-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-----------------------------------------------------------------------------
module THREE.InterleavedBufferAttribute
  ( -- * Types
    InterleavedBufferAttribute (..)
    -- * Methods
  , THREE.InterleavedBufferAttribute.new
    -- * Properties
  ) where
-----------------------------------------------------------------------------
import           Miso
-----------------------------------------------------------------------------
import qualified THREE.Internal as THREE
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/scenes/InterleavedBufferAttribute
newtype InterleavedBufferAttribute
  = InterleavedBufferAttribute
  { InterleavedBufferAttribute -> JSVal
unInterleavedBufferAttributeCamera :: JSVal
  } deriving (InterleavedBufferAttribute -> IO Object
(InterleavedBufferAttribute -> IO Object)
-> ToObject InterleavedBufferAttribute
forall a. (a -> IO Object) -> ToObject a
$ctoObject :: InterleavedBufferAttribute -> IO Object
toObject :: InterleavedBufferAttribute -> IO Object
ToObject)
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/cameras/InterleavedBufferAttribute
new :: THREE.Three InterleavedBufferAttribute
new :: Three InterleavedBufferAttribute
new = (JSVal -> InterleavedBufferAttribute)
-> MisoString -> () -> Three InterleavedBufferAttribute
forall args con.
ToArgs args =>
(JSVal -> con) -> MisoString -> args -> Three con
THREE.new JSVal -> InterleavedBufferAttribute
InterleavedBufferAttribute MisoString
"InterleavedBufferAttribute" ()
-----------------------------------------------------------------------------