The Monumentaries Project, Art Practices 1

This project was created as an assignment for Spring 2021 Art Practices 1 classes at CNM and UNM. Teaching artists Ellen Babcock and Lindsey Fromm created the project curriculum for art courses that had transitioned online due to the COVID-19 pandemic. Their colleagues Danielle Miller and Chandler Wigton also implemented the project in their courses, and so far approximately 60 students have participated in the project.

The following artifacts explain the project to students and collaborators.

We invite you to use these resources to implement a similar project in your own classrooms.

Project Map

This map was created to navigate through the steps to create a Monumentary.

How to Make a Monumentary.jpg

 Project Powerpoint

This document breaks down the project map to explain how to complete a Monumentary step by step.

1

 Curriculum Guide

This document covers a 2 week curriculum, including the project description and steps for students to follow, readings, artist resources, and discussion and critique questions.

PROCEDURE DoGraphicsScroll (window: WindowPtr; hDistance, vDistance: Integer); VAR myScrollRect: Rect; updateRegion: RgnHandle; BEGIN {initially, use the window's portRect as the rectangle to scroll} myScrollRect := window^.portRect; {subtract vertical and horizontal scroll bars from rectangle} myScrollRect.right := myScrollRect.right - 15; myScrollRect.bottom := myScrollRect.bottom - 15; updateRegion := NewRgn; {always initialize the update region} ScrollRect(myScrollRect, hDistance, vDistance, updateRegion); InvalRgn(updateRegion); DisposeRgn(updateRegion); END; {of DoGraphicsScroll}