-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedge.lisp
More file actions
33 lines (29 loc) · 1.05 KB
/
edge.lisp
File metadata and controls
33 lines (29 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
;;;-*- Mode:Common-Lisp; Package:PICTURES; Base:10 -*-
;;;
;;;
;;;
;;; TEXAS INSTRUMENTS INCORPORATED
;;; P.O. BOX 149149
;;; AUSTIN, TEXAS 78714-9149
;;;
;;; Copyright (C)1987,1988,1989,1990 Texas Instruments Incorporated.
;;;
;;; Permission is granted to any individual or institution to use, copy, modify,
;;; and distribute this software, provided that this complete copyright and
;;; permission notice is maintained, intact, in all copies and supporting
;;; documentation.
;;;
;;; Texas Instruments Incorporated provides this software "as is" without
;;; express or implied warranty.
;;;
;;; Authors: Delmar Hager, James Dutton, Teri Crowe
;;; Contributors: Kerry Kimbrough, Patrick Hogan, Eric Mielke
(in-package :pictures)
(defclass edge ()
((edge-gstate :type (or null gstate)
:initarg :edge-gstate
:initform nil
:accessor edge-gstate
:documentation "The visual attributes of the line bounding a filled graphic object(R)"))
(:documentation "Provides the gstate of the edge for filled objects")
)