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