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