From 349a4df0eccaf0355637a8ab7702484abbb418db Mon Sep 17 00:00:00 2001 From: Frank Staals Date: Fri, 16 Aug 2024 20:25:25 +0200 Subject: [PATCH] some cleaning up of the imports --- hgeometry-examples/sampler/Main.hs | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/hgeometry-examples/sampler/Main.hs b/hgeometry-examples/sampler/Main.hs index 259601677..979eb8744 100644 --- a/hgeometry-examples/sampler/Main.hs +++ b/hgeometry-examples/sampler/Main.hs @@ -1,20 +1,17 @@ {-# LANGUAGE QuasiQuotes #-} module Main(main) where -import Control.Lens -import Control.Monad (replicateM) -import Data.List.NonEmpty (NonEmpty(..)) -import Data.Maybe -import HGeometry.Point -import HGeometry.Polygon.Class -import HGeometry.Polygon.Simple -import HGeometry.Polygon.Simple.Sample -import HGeometry.Transformation -import HGeometry.Triangle -import Ipe -import qualified System.File.OsPath as File -import System.OsPath -import System.Random.Stateful +import Control.Monad (replicateM) +import Data.List.NonEmpty (NonEmpty(..)) +import Data.Maybe +import HGeometry.Point +import HGeometry.Polygon.Simple +import HGeometry.Polygon.Simple.Sample +import HGeometry.Transformation +import HGeometry.Triangle +import Ipe +import System.OsPath +import System.Random.Stateful -------------------------------------------------------------------------------- type R = Double