From 2e6dd0ec80c184ceb473fd921fbae313660a2ff3 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Thu, 25 Jun 2009 22:23:05 +0000 Subject: [PATCH] Pushing graphics reimplementation into sub directory to clean up svn: r15285 --- collects/frtime/animation.ss | 10 +++++----- .../frtime/{ => animation}/graphics-posn-less-unit.ss | 0 collects/frtime/{ => animation}/graphics-sig.ss | 0 collects/frtime/{ => animation}/graphics-unit.ss | 0 collects/frtime/{ => animation}/graphics.ss | 0 5 files changed, 5 insertions(+), 5 deletions(-) rename collects/frtime/{ => animation}/graphics-posn-less-unit.ss (100%) rename collects/frtime/{ => animation}/graphics-sig.ss (100%) rename collects/frtime/{ => animation}/graphics-unit.ss (100%) rename collects/frtime/{ => animation}/graphics.ss (100%) diff --git a/collects/frtime/animation.ss b/collects/frtime/animation.ss index b966724968..917a9afd07 100644 --- a/collects/frtime/animation.ss +++ b/collects/frtime/animation.ss @@ -1,7 +1,9 @@ (module animation frtime - (require (all-except "graphics.ss" make-posn posn-x posn-y make-rgb) - (lifted "graphics.ss" posn-x posn-y make-posn make-rgb) + (require (all-except frtime/animation/graphics + make-posn posn-x posn-y make-rgb) + (lifted frtime/animation/graphics + posn-x posn-y make-posn make-rgb) mzlib/match (as-is:unchecked frtime/lang-ext lift) mzlib/class @@ -375,6 +377,4 @@ (provide (all-defined-except pixmap window draw-list l d make-wave-state wave-state-hz wave-state-offset) - #;(lifted make-circle make-ring make-solid-ellipse make-rect make-line make-polygon make-solid-polygon - make-graph-string) - (all-from "graphics.ss"))) + (all-from frtime/animation/graphics))) diff --git a/collects/frtime/graphics-posn-less-unit.ss b/collects/frtime/animation/graphics-posn-less-unit.ss similarity index 100% rename from collects/frtime/graphics-posn-less-unit.ss rename to collects/frtime/animation/graphics-posn-less-unit.ss diff --git a/collects/frtime/graphics-sig.ss b/collects/frtime/animation/graphics-sig.ss similarity index 100% rename from collects/frtime/graphics-sig.ss rename to collects/frtime/animation/graphics-sig.ss diff --git a/collects/frtime/graphics-unit.ss b/collects/frtime/animation/graphics-unit.ss similarity index 100% rename from collects/frtime/graphics-unit.ss rename to collects/frtime/animation/graphics-unit.ss diff --git a/collects/frtime/graphics.ss b/collects/frtime/animation/graphics.ss similarity index 100% rename from collects/frtime/graphics.ss rename to collects/frtime/animation/graphics.ss