-
Notifications
You must be signed in to change notification settings - Fork 14
Shadow
RyanGlScott edited this page Oct 9, 2014
·
3 revisions
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Graphics.Blank
main :: IO ()
main = blankCanvas 3000 $ \ context -> do
send context $ do
rect(188, 40, 200, 100);
fillStyle "red";
shadowColor "#999";
shadowBlur 20;
shadowOffsetX 15;
shadowOffsetY 15;
fill()