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