From fc73b618d1c6bdf596ad8eef44173000e45fc086 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 15 Dec 2010 13:41:59 -0700 Subject: [PATCH] document some modules that are referenced in other documentation original commit: 234a57506fc379449864495a5ed4dc12672f472f --- collects/mrlib/scribblings/matrix-snip.scrbl | 16 ++++++++++++++++ collects/mrlib/scribblings/mrlib.scrbl | 1 + 2 files changed, 17 insertions(+) create mode 100644 collects/mrlib/scribblings/matrix-snip.scrbl diff --git a/collects/mrlib/scribblings/matrix-snip.scrbl b/collects/mrlib/scribblings/matrix-snip.scrbl new file mode 100644 index 00000000..6a25dd42 --- /dev/null +++ b/collects/mrlib/scribblings/matrix-snip.scrbl @@ -0,0 +1,16 @@ +#lang scribble/doc +@(require "common.ss" + (for-label mrlib/matrix-snip + (only-in mrlib/cache-image-snip + cache-image-snip%))) + +@title{Matrix Snip} + +@defmodule[mrlib/matrix-snip] + +The @racket[mrlib/matrix-snip] library implements a matrix value that displays +in 2-D graphical form. + +@defclass[visible-matrix% cache-image-snip% ()]{ + +A 2-D graphical matrix.} diff --git a/collects/mrlib/scribblings/mrlib.scrbl b/collects/mrlib/scribblings/mrlib.scrbl index 8d4e8eb8..d6f73961 100644 --- a/collects/mrlib/scribblings/mrlib.scrbl +++ b/collects/mrlib/scribblings/mrlib.scrbl @@ -19,6 +19,7 @@ @include-section["plot.scrbl"] @include-section["switchable-button.scrbl"] @include-section["image-core.scrbl"] +@include-section["matrix-snip.scrbl"] @include-section["tex-table.scrbl"] @section{Acknowledgments}