id int64 0 45.1k | file_name stringlengths 4 68 | file_path stringlengths 14 193 | content stringlengths 32 9.62M | size int64 32 9.62M | language stringclasses 1
value | extension stringclasses 6
values | total_lines int64 1 136k | avg_line_length float64 3 903k | max_line_length int64 3 4.51M | alphanum_fraction float64 0 1 | repo_name stringclasses 779
values | repo_stars int64 0 882 | repo_forks int64 0 108 | repo_open_issues int64 0 90 | repo_license stringclasses 8
values | repo_extraction_date stringclasses 146
values | sha stringlengths 64 64 | __index_level_0__ int64 0 45.1k | exdup_ids_cmlisp_stkv2 listlengths 1 47 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
33,016 | iter-general.lsp | rwoldford_Quail/examples/arrays/iter-general.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Iteration Introduction
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Lab... | 8,577 | Common Lisp | .l | 233 | 31.995708 | 89 | 0.540485 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a9f2d52c7e28053d21226e504c95e516779744c05d2bc2abd8c82d3f49ddcb3c | 33,016 | [
-1
] |
33,017 | ref.lsp | rwoldford_Quail/examples/arrays/ref.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; ref.lsp
;;;
;;;
;;; Authors:
;;; D.G. Anglin 1994.
;;; R.W. Oldford 1994.
(in-package q-user)
(setf a (array '((100 101 102) (110 111 112) (120 121 122))))
(setf b (array '(28 7 32)))
(setf c (array '((10) (20) (30))))
(setf d (array... | 6,231 | Common Lisp | .l | 143 | 39.916084 | 84 | 0.597668 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 77b664917508cc06d19f080ad5f8ce032d3d10d2cc12af8f89f0aed88c18ffbe | 33,017 | [
-1
] |
33,019 | search.lsp | rwoldford_Quail/examples/arrays/search.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Searching refable objects
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Laboratory, University Of Waterlo... | 10,928 | Common Lisp | .l | 320 | 29.734375 | 86 | 0.520449 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | c73db228203d496012791867e330e16d4fad2439a9381fad28243b2a3206e0df | 33,019 | [
-1
] |
33,020 | select-by-pred.lsp | rwoldford_Quail/examples/arrays/select-by-pred.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Selecting elements by predicate
;;;
;;;
;;; Authors:
;;; R.W. Oldford 1994.
(in-package :quail-user)
;;;
;;;
(setf a (array '((1.2 3 4.5) (6.7 8.9 0.1))
:dimensions '(2 3)))
;;;
;;; For large arrays, it is often more convenient... | 1,222 | Common Lisp | .l | 46 | 23.347826 | 67 | 0.529049 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | d3e966e96c52fc570957ab9de1bd0a0c9a93862a826ef1f592026d7ed987c808 | 33,020 | [
-1
] |
33,021 | array.lsp | rwoldford_Quail/examples/arrays/array.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Advanced array creation
;;;
;;;
;;; Authors:
;;; D.G. Anglin 1994.
(in-package :q-user)
(array '(1 2 3 4 5 6) :dimensions '(3 2))
(array '(1 2 3 4 5 6) :dimensions '(3 2) :fill :col)
(array '((1 2) (1 1)) :dimensions '(2))
;; (array '((1 ... | 1,676 | Common Lisp | .l | 43 | 34.930233 | 83 | 0.585381 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | f2298c12f303ba949370c26df3a288fb58b3706e126bce64e2037347ba624529 | 33,021 | [
-1
] |
33,022 | arith-ops.lsp | rwoldford_Quail/examples/arrays/arith-ops.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Arithmetic operations on arrays
;;;
;;;
;;; Authors:
;;; D.G. Anglin 1994.
(in-package :quail-user)
(setf a (array '((1 3 5) (6 8 10))))
(setf b (array '((101.2 103.0 104.5) (206.7 208.9 200.1))))
(setf c (array '((100.0) (200.0))))
(setf... | 4,155 | Common Lisp | .l | 97 | 39.43299 | 87 | 0.598064 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | e73493a5cd93a8d346a235941085283d381e24dd3ad07c5224cd4769ff4c4750 | 33,022 | [
-1
] |
33,023 | handy-arrays.lsp | rwoldford_Quail/examples/arrays/handy-arrays.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Some handy array creation functions
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computi... | 2,783 | Common Lisp | .l | 86 | 29.476744 | 87 | 0.618347 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 74dcc3ae951573ce9e09410cda9a80419bad3564a38b92f0de2d36930c3af4a7 | 33,023 | [
-1
] |
33,024 | iter-elements.lsp | rwoldford_Quail/examples/arrays/iter-elements.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; General Iteration over elements
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Laborato... | 9,206 | Common Lisp | .l | 239 | 32.807531 | 90 | 0.587276 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | fdffe36eb9ce4180c5fe6de08d46cd384510b1502238b32e352662d043801648 | 33,024 | [
-1
] |
33,025 | sort.lsp | rwoldford_Quail/examples/arrays/sort.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Sorting array contents
;;;
;;;
;;; Authors:
;;; R.W. Oldford 1994.
(in-package :quail-user)
(setf a (array '((1.2 3 4.5) (6.7 8.9 0.1))
:dimensions '(2 3)))
(setf b (seq 10 -10 -1))
(setf small-b (ref b '(:c 0 1 2))) ;;... | 17,334 | Common Lisp | .l | 462 | 33.311688 | 92 | 0.606698 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | d27f156bde3930388d3456f1db91fae6af23b6e9350a151f2b78e0824bb2217a | 33,025 | [
-1
] |
33,026 | glue.lsp | rwoldford_Quail/examples/arrays/glue.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Putting arrays together
;;;
;;;
;;; Authors:
;;; D.G. Anglin 1994.
(in-package :quail-user)
(setf a (array '((1.2 3 4.5) (6.7 8.9 0.1))
:dimensions '(2 3)))
(setf b (vector 100 200))
(setf c (array 7 :dimensions '(2 2)))
... | 1,718 | Common Lisp | .l | 43 | 36.372093 | 83 | 0.565619 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | ee913ed1c47d5fb6219c706905e09b2028a52fcf22e9622d3b19bdf7f0e7f71f | 33,026 | [
-1
] |
33,027 | overview.lsp | rwoldford_Quail/examples/arrays/overview.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Overview of array manipulation functions
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing... | 6,359 | Common Lisp | .l | 120 | 49.791667 | 130 | 0.361373 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | dcaa8461c5440d4d949809990b26cbf25c8002de94ee575eabe7de8b25468674 | 33,027 | [
-1
] |
33,028 | math-funs.lsp | rwoldford_Quail/examples/arrays/math-funs.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Mathematical functions
;;;
;;;
;;; Authors:
;;; R.W. Oldford 1994.
(in-package :quail-user)
(setf a (array '((1.2 3 4.5) (6.7 8.9 0.1))
:dimensions '(2 3)))
;;;
;;; In addition to the usual arithmetic operators
;;; All of the ... | 2,082 | Common Lisp | .l | 92 | 19.771739 | 76 | 0.588992 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 92814e3336d05b7d5238c838f88581b47375beb5bc6bbe6992b9fd27700bab9c | 33,028 | [
-1
] |
33,029 | inverse-test.lsp | rwoldford_Quail/examples/arrays/matrices/inverse-test.lsp | (<- n 3)
(<- iden (identity-matrix n))
(defun print-mat (mat)
(let* ((dims (dimensions-of mat))
(dim-1 (first dims))
(dim-2 (second dims)))
(loop for i from 0 below dim-1
do
(format *terminal-io*
"~&~%Row ~s~&~5T" i)
(loop for j from 0 ... | 1,622 | Common Lisp | .l | 59 | 22.576271 | 73 | 0.543803 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | b59fde5eddc4c6c91b44d92d4238dca88cfc476a67d85ad8375dba9a548172e5 | 33,029 | [
-1
] |
33,030 | intro.lsp | rwoldford_Quail/examples/arrays/matrices/intro.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Matrix introduction
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Laborato... | 11,771 | Common Lisp | .l | 289 | 37.743945 | 88 | 0.674805 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 444490bfd618e1d264470fa770d66975c54de0a92958cfc20bb61c7fef7c1934 | 33,030 | [
-1
] |
33,031 | operations.lsp | rwoldford_Quail/examples/arrays/matrices/operations.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Matrix operations
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Laboratory... | 17,579 | Common Lisp | .l | 446 | 36.621076 | 84 | 0.661299 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 9ee7f2a7c78762fdf1fde46f3f1d02d5ea1997ddd71e63462f9add7fca6a19b7 | 33,031 | [
-1
] |
33,032 | matrices.lsp | rwoldford_Quail/examples/arrays/matrices/matrices.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Matrices
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Laboratory, Unive... | 18,310 | Common Lisp | .l | 466 | 36.669528 | 86 | 0.64741 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 483e5b1e0edcd8a0310d4b023d98dc14a8b15c966dc08b28d0e52f233da78743 | 33,032 | [
-1
] |
33,033 | cl-types.lsp | rwoldford_Quail/examples/arrays/matrices/cl-types.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Common Lisp types as matrices
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Labor... | 1,914 | Common Lisp | .l | 66 | 26.272727 | 84 | 0.590316 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | dfee08e5233e9038ce8ed7c2dbe02738b59d238af5d1bc6606b36b0ae89f3992 | 33,033 | [
-1
] |
33,034 | overview.lsp | rwoldford_Quail/examples/arrays/matrices/overview.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Matrix overview
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (C) 1994 Statistical Computing Laboratory, Un... | 4,802 | Common Lisp | .l | 119 | 37.10084 | 84 | 0.510597 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a8fccfe375d7c454d80ab5e897c6b8cd8d38199638d8e90395a3ea83b95bef06 | 33,034 | [
-1
] |
33,035 | svd.lsp | rwoldford_Quail/examples/arrays/matrices/Decompositions/svd.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; svd.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1994 Statistical Computing Laboratory, Univer... | 9,852 | Common Lisp | .l | 233 | 38.55794 | 81 | 0.61804 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 6751a182e88c6c82fab18b3ea8098c7251be213a9fced0de5b971f86e2860bf3 | 33,035 | [
-1
] |
33,036 | qr.lsp | rwoldford_Quail/examples/arrays/matrices/Decompositions/qr.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; qr.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1995 Statistical Computing Laboratory, University o... | 1,864 | Common Lisp | .l | 55 | 30.290909 | 81 | 0.474595 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | d498af6f7ff20fff58673b79461470b8cda4f9232234640af32f7952c3138398 | 33,036 | [
-1
] |
33,037 | cholesky.lsp | rwoldford_Quail/examples/arrays/matrices/Decompositions/cholesky.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; cholesky.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1994 Statistical Computing Laboratory, Univer... | 6,199 | Common Lisp | .l | 157 | 36.751592 | 82 | 0.660475 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 43cdbca04584242b28e7cf484eef628ae95846f7d8ddfa5664b45d2623602fe7 | 33,037 | [
-1
] |
33,038 | lu.lsp | rwoldford_Quail/examples/arrays/matrices/Decompositions/lu.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; lu.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1994 Statistical Computing Laboratory, Univers... | 3,848 | Common Lisp | .l | 118 | 29.70339 | 81 | 0.613896 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 07e6052f0bb080b335997be5e6045a1b9c17bd58aa68df126df9ab3ad7e20e20 | 33,038 | [
-1
] |
33,039 | eigen.lsp | rwoldford_Quail/examples/arrays/matrices/Decompositions/eigen.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; eigen.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1994 Statistical Computing Laboratory, University of Waterloo
;;;
;;;
;;; ... | 2,504 | Common Lisp | .l | 55 | 41.927273 | 82 | 0.597194 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 538f5e547f0dfa7c22d1df977510ec29e5aa6701aef7a3a57aa29b514f5d29a4 | 33,039 | [
-1
] |
33,040 | overview.lsp | rwoldford_Quail/examples/arrays/matrices/Decompositions/overview.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; overview.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1994 Statistical Computing Laboratory, Univ... | 10,934 | Common Lisp | .l | 270 | 37.718519 | 83 | 0.651414 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 061fe409bd62c42946232f9f4f5561de0640e5971af28d092cef4d0da31d1c5c | 33,040 | [
-1
] |
33,041 | section.lsp | rwoldford_Quail/contributed/rotation-and-section/section.lsp | (in-package wb)
(defun align-z-axis-to-axis (data x y z)
(let* ((length (sqrt (+ (* x x) (* y y) (* z z))))
(phi (acos (/ z length)))
(theta (if (eq (round (* phi 1000)) 0)
0 (asin (/ y (* length (sin phi))))))
(zrot (make-instance '3d-z-rotate :angle theta))
... | 6,471 | Common Lisp | .l | 139 | 25.719424 | 71 | 0.386403 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 3df91495cb744f53ba53fb1ba19a982dec9d699397bb568305f6b951641ff120 | 33,041 | [
-1
] |
33,042 | commonly-used-stuff.lsp | rwoldford_Quail/contributed/rotation-and-section/commonly-used-stuff.lsp |
(defun sort-data-by-col (array col)
(let* ((the-list
(loop for i from 0 to (1- (first (array-dimensions array)))
collect (list i (aref array i col)))))
(setf the-list (sort the-list #'< :key #'second))
(qk::sel array (mapcar #'first the-list) :shape t)))
(defun array-mean (... | 3,436 | Common Lisp | .l | 72 | 35.722222 | 89 | 0.526711 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | d115b13e6cc192b60d13c34c7796c627cadabf2f101f8c798affacb4cb073f8f | 33,042 | [
-1
] |
33,043 | integer-affine-trans.lsp | rwoldford_Quail/contributed/rotation-and-section/integer-affine-trans.lsp | ;;; A modified version of affinetrans.lisp. It includes more specific subclasses,
;;; such as:
;;;
;;; affine-transform---- 2d-affine----- 2d-shift
;;; \
;;; \_ 3d-affine----- 3d-rotate------ 3d-x-rotate
;;; | |
;;; ... | 15,207 | Common Lisp | .l | 273 | 43.384615 | 195 | 0.548284 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 7fc64ea834ae05416eca2d2ed1baa39038de07fec1eaef07690613fcd2473b93 | 33,043 | [
-1
] |
33,044 | make-data.lsp | rwoldford_Quail/contributed/rotation-and-section/make-data.lsp | (in-package :wb)
(defun make-positive-data (n &key (x 100) (y 100) (z 100))
(make-array (list n 3) :initial-contents
(loop for i from 1 to n
collect (list (abs (- (/ x 2) (random x)))
(abs (- (/ y 2) (random y)))
(abs (- (/ z 2)... | 3,283 | Common Lisp | .l | 60 | 33.116667 | 96 | 0.359526 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 83a39010e4481512d8f1e711a13c9575e3c8d210a47b9e1be5c52d00e749da6c | 33,044 | [
-1
] |
33,045 | modified-affine-trans.lsp | rwoldford_Quail/contributed/rotation-and-section/modified-affine-trans.lsp | ;;; A modified version of affinetrans.lisp. It includes more specific subclasses,
;;; such as:
;;;
;;; affine-transform---- 2d-affine----- 2d-shift
;;; \
;;; \_ 3d-affine----- 3d-rotate------ 3d-x-rotate
;;; | |
;;; ... | 13,961 | Common Lisp | .l | 261 | 40.858238 | 195 | 0.536571 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 92ce42b3017825dec23285c594b7ba6da8c95f1db8774f9b60fa864c22ff2cea | 33,045 | [
-1
] |
33,046 | load-plain-spin.lsp | rwoldford_Quail/contributed/rotation-and-section/load-plain-spin.lsp | (in-package :wb)
(load "Devel:Quail:contributed:rotation-and-section:commonly-used-stuff.lisp")
(load "Devel:Quail:contributed:rotation-and-section:make-data.lisp")
(load "Devel:Quail:contributed:rotation-and-section:integer-affine-trans.lisp")
(load "Devel:Quail:contributed:rotation-and-section:spin:wb-extensions"... | 477 | Common Lisp | .l | 7 | 66.428571 | 86 | 0.802548 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | fa604e39a539291018b89eac7e220ad4cf8f9b2b6a6fbffda3139e428de7b0a5 | 33,046 | [
-1
] |
33,047 | spin-at&bm.lsp | rwoldford_Quail/contributed/rotation-and-section/spin-with-bitmap&at/spin-at&bm.lsp | (in-package wb)
(defun user-select-direction (a b c)
(let ((r (random 3)))
(cond ((eq r 0) a)
((eq r 1) b)
(t c))))
(defun rotate-point-cloud (data c
&key (increment (/ pi 30))
(plot-rgn (make-region
... | 3,175 | Common Lisp | .l | 65 | 30.123077 | 105 | 0.447021 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | df0a4abda495eb7171e66a9daccec5f44a081f3ab44515882edcad3eb1ac3a1c | 33,047 | [
-1
] |
33,048 | plot-directly-on-bitmap.lsp | rwoldford_Quail/contributed/rotation-and-section/spin-with-bitmap&at/plot-directly-on-bitmap.lsp | (in-package :wb)
;;; The following lines are just for test purposes, and are consequently
;;; commented out
#|
(setf bm (make-box-bitmap (- (canvas-width c) (mod (canvas-width c) 8))
(canvas-height c)))
(setf bm (make-bitmap :width (1+ (- (canvas-width c) (mod (canvas-width c) 8)))
... | 3,175 | Common Lisp | .l | 69 | 33.927536 | 98 | 0.525653 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | b5a2a536df00711efab15cb42071fe7a9a99082e547ade72accd94e15b116cc6 | 33,048 | [
-1
] |
33,049 | spin.lsp | rwoldford_Quail/contributed/rotation-and-section/spin/spin.lsp | (in-package wb)
(defun make-data (n &key (x 100) (y 100) (z 100))
(make-array (list n 3) :initial-contents
(loop for i from 1 to n
collect (list (- (/ x 2) (random x))
(- (/ y 2) (random y))
(- (/ z 2) (random z))))))
(defun ... | 5,696 | Common Lisp | .l | 121 | 27.900826 | 92 | 0.376468 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 8cc039869f1f2c5eb478184315ba2a52c47b4b405894ea62ca7e926e62f71a29 | 33,049 | [
-1
] |
33,050 | spin-with-affine-trans.lsp | rwoldford_Quail/contributed/rotation-and-section/spin/spin-with-affine-trans.lsp | (in-package wb)
(defun user-select-direction (a b c)
(let ((r (random 3)))
(cond ((eq r 0) a)
((eq r 1) b)
(t c))))
(defun rotate-point-cloud (data c
&key (increment (/ pi 30))
(plot-rgn (make-region 0 0 (canvas-widt... | 3,475 | Common Lisp | .l | 64 | 33.203125 | 105 | 0.438742 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | ea648f6028e3762a0601c4e229ee525df9ece3f62ff897216254441e45627f76 | 33,050 | [
-1
] |
33,051 | wb-extensions.lsp | rwoldford_Quail/contributed/rotation-and-section/spin/wb-extensions.lsp | ;;; just a note: the first macro has a quote around it so that I can check that
;;; the form it iexpamding to is what I want.
#|
(defmacro with-focused-canvas (canvas &body body)
`(quote (with-focused-view ,canvas ,@body)))|#
(in-package wb)
(defmacro with-focused-canvas (canvas &body body)
`(with-focused-... | 1,267 | Common Lisp | .l | 30 | 35.433333 | 80 | 0.619281 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 959c05af78a37b0d5288abbade3cfa41a7dba08a709496ff8697cc199e80d046 | 33,051 | [
-1
] |
33,052 | active-object.lsp | rwoldford_Quail/contributed/tba/active-object/active-object.lsp | ;;;------------------------------------------------------------------------
;;;
;;; active-value.lisp
;;;
;;;------------------------------------------------------------------------
(in-package 'quail-user)
(defclass active-value (quail-object)
((value :initarg :value
:initform nil
:... | 2,417 | Common Lisp | .l | 60 | 29.7 | 84 | 0.47473 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 4ec61d38c98320dfa975a2f05bc20092fc992727829eca5ef6b7e27cfb593870 | 33,052 | [
-1
] |
33,053 | new-slot-value.lsp | rwoldford_Quail/contributed/tba/active-object/new-slot-value.lsp | ;;;------------------------------------------------------------------------
;;;
;;; new-slot-value.lisp
;;;
;;;------------------------------------------------------------------------
(in-package 'quail-user)
(defvar *old-slot-value* ())
(eval-when (compile load eval)
(unless *old-slot-value* (setf *ol... | 1,278 | Common Lisp | .l | 31 | 36.83871 | 101 | 0.58615 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | ede15546c7bc5a06859c0326608c4a7a73d3265511fb584f7aa8302513091e17 | 33,053 | [
-1
] |
33,054 | depository.lsp | rwoldford_Quail/contributed/tba/active-object/depository.lsp | ;;;------------------------------------------------------------------------
;;; inverse.lisp
;;;
;;;------------------------------------------------------------------------
(in-package :pcl)
;-----
(defvar *old-slot-value* ())
(unless *old-slot-value* (setf *old-slot-value* (symbol-function 'slot-value)... | 6,144 | Common Lisp | .l | 157 | 30.713376 | 87 | 0.490915 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | aacfc367806a390503cbefe5c1adecaceed8c59e93f1f8774ec376abcb05769b | 33,054 | [
-1
] |
33,056 | basic-statistics-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/basic-statistics-tpc.lsp | (setf (doc 'BASIC-STATISTICS :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"BASIC-STATISTICS"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'BASIC-STATISTICS
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'N... | 790 | Common Lisp | .l | 48 | 12.625 | 52 | 0.666667 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 3f0b88bc78845554edd6a8ab5ef25fe6ee8b4f1ef393df1b439221e1502ee169 | 33,056 | [
-1
] |
33,057 | summary-statistics-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/summary-statistics-tpc.lsp | (setf (doc 'SUMMARY-STATISTICS :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"SUMMARY-STATISTICS"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'SUMMARY-STATISTICS
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS... | 1,242 | Common Lisp | .l | 54 | 18.925926 | 80 | 0.6875 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 7a8ba52cc6d0edacac4865735d69fe86011e1a897c88b46283a824ded6d56429 | 33,057 | [
-1
] |
33,058 | synonyms-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/synonyms-tpc.lsp | (setf (doc 'SYNONYMS :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"SYNONYMS"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'SYNONYMS
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
:SUB-TOPICS
'((... | 832 | Common Lisp | .l | 50 | 12.72 | 79 | 0.614396 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 039e7680d4e374b3c8b94f4ea65b8d0750d9d0f6a56accd1f463a405da190abf | 33,058 | [
-1
] |
33,059 | hardcopy-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/hardcopy-tpc.lsp | (setf (doc 'HARDCOPY :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"HARDCOPY"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'HARDCOPY
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
:SUB-TOPICS
'((... | 694 | Common Lisp | .l | 48 | 10.625 | 37 | 0.641745 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | d2dab710ab185907ca26070e12f236a8387f94a8b5c5a89665968198aecdb2e9 | 33,059 | [
-1
] |
33,060 | color-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/color-tpc.lsp | (setf (doc 'COLOR :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"COLOR"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'COLOR
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
:SUB-TOPICS
'((*BLACK-CO... | 1,564 | Common Lisp | .l | 62 | 20.903226 | 80 | 0.640854 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 9d330e5ea2b386b32171f7a93e809eec701180c276fbde54df0b4b572c1e80d6 | 33,060 | [
-1
] |
33,061 | host-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/host-tpc.lsp | (setf (doc 'HOST :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"HOST"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'HOST
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
:SUB-TOPICS
'((WINDOW-BASIC... | 696 | Common Lisp | .l | 48 | 10.666667 | 41 | 0.636646 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a75287515d626ddac9da5abd51972871a7a2d6da1a258ed37caeb8dbfbdb2eac | 33,061 | [
-1
] |
33,062 | statistics-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/statistics-tpc.lsp | (setf (doc 'STATISTICS :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"STATISTICS"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'STATISTICS
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
:SUB-TOPICS
... | 714 | Common Lisp | .l | 48 | 11.041667 | 37 | 0.652568 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 5ec40918fe3d0deb32c3b8f20c6dd34d8d806e0a1f94051b52da52578b8f46bc | 33,062 | [
-1
] |
33,063 | window-basics-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/window-basics-tpc.lsp | (setf (doc 'WINDOW-BASICS :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"WINDOW-BASICS"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'WINDOW-BASICS
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
:SU... | 774 | Common Lisp | .l | 48 | 12.291667 | 53 | 0.648199 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | fbaa9db1bc8f19bd45d543bc1b56c04b82f96a2af90ce55b8caff8e1781d68ac | 33,063 | [
-1
] |
33,064 | initialization-tpc.lsp | rwoldford_Quail/doc/auto/quail-user/initialization-tpc.lsp | (setf (doc 'INITIALIZATION :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"INITIALIZATION"
:PACKAGE
"QUAIL-USER"
:SYMBOL
'INITIALIZATION
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
... | 722 | Common Lisp | .l | 48 | 11.208333 | 37 | 0.659701 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 4242fac343502d2ecfa08c1aa9e4f34fc885e755c4e373075d09aa19599a3651 | 33,064 | [
-1
] |
33,066 | quail-tpc.lsp | rwoldford_Quail/doc/auto/quail/quail-tpc.lsp | (setf (doc 'QUAIL :topic)
(MAKE-INSTANCE
'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"QUAIL"
:PACKAGE
"QUAIL"
:SYMBOL
'QUAIL
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
'NIL
:REFERENCES
NIL
:SEE-ALSO
'NIL
:SUPER-TOPICS
'NIL
:SUB-TOPICS
'((INITIALIZATION... | 756 | Common Lisp | .l | 48 | 11.916667 | 73 | 0.647727 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 248806fc4dd3f187c8668b3aa995859ff351a651330db35373347918fe2c46ab | 33,066 | [
-1
] |
33,067 | examples-tpc.lsp | rwoldford_Quail/doc/polished/topics/examples-tpc.lsp |
(setf (doc 'EXAMPLES :topic)
(MAKE-INSTANCE 'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"EXAMPLES"
:PACKAGE
"QUAIL"
:DOC-CAPSULE
"Examples can be found by direct selection from the Quail menu ~
or by editing files in the Quail examples direct... | 627 | Common Lisp | .l | 24 | 16.208333 | 73 | 0.52862 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | fe5b7a118a050d569919c6d26872e01438b4093584155ff7bdaec5fa9e177f80 | 33,067 | [
-1
] |
33,068 | general-tpc.lsp | rwoldford_Quail/doc/polished/topics/general-tpc.lsp |
(setf (doc 'GENERAL :topic)
(MAKE-INSTANCE 'QUAIL-KERNEL::TOPIC-DOCUMENTATION
:NAME
"GENERAL"
:PACKAGE
"QUAIL"
:DOC-CAPSULE
NIL
:DOC-ELABORATION
NIL
:EXAMPLES
NIL
:REFERENCES
NIL
:SEE-ALSO
NIL
:SUPER-TOPICS
'()
:SUB-TOPICS
'((HELP-INFORMATION :TOPIC)
(COMM... | 1,124 | Common Lisp | .l | 48 | 18.375 | 50 | 0.658582 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 750fc74d1b5ca9038c3643937d6eb3cdb148fdb8dbcfbece2db4edfc16cdcacc | 33,068 | [
-1
] |
33,069 | documentation-tpc.lsp | rwoldford_Quail/doc/polished/common-lisp/documentation-tpc.lsp | (setf (doc 'documentation :topic)
(make-instance 'quail-kernel::topic-documentation
:name
"documentation"
:doc-capsule
"How documentation is accessed and created in Quail."
:doc-elaboration
... | 1,724 | Common Lisp | .l | 32 | 31.4375 | 82 | 0.390431 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a0b2be76b3c0359cf58bfa3317595474f7224020df36d2842b3cbf9426fa47d4 | 33,069 | [
-1
] |
33,070 | fast-surface-fill-fn.tex | rwoldford_Quail/doc/tex/window-basics/fast-surface-fill-fn.tex | \headerbox{FAST-SURFACE-FILL}{}{FUNCTION}
{\bf Description}
No description available.
{\bf Lambda List}
(CANVAS X-ORIGIN Y-ORIGIN X Y CZ SZV C NCOL AA FAST-COLOR-TABLE)
{\bf Arguments}
\beginhang
{\bf Required}\hspace{2em}
{\bf CANVAS}
{\bf X-ORIGIN}
{\bf Y-ORIGIN}
... | 524 | Common Lisp | .l | 22 | 16.909091 | 65 | 0.680203 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 480ba3787b11d8c6903f3c301e6f1282c7d476b08d8735c2395f207fdbc84453 | 33,070 | [
-1
] |
33,071 | starblack-colourstar-var.tex | rwoldford_Quail/doc/tex/window-basics/starblack-colourstar-var.tex | \headerbox{*BLACK-COLOUR*}{}{VARIABLE}
{\bf Description}
No description available.
{\bf Default value}
0
{\bf Home Package}
WINDOW-BASICS
| 166 | Common Lisp | .l | 7 | 18.714286 | 39 | 0.746377 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 6a8ed7efed6bf2b8e66602597f4f672636f0fa2c9f6e301776eed41f3990aba7 | 33,071 | [
-1
] |
33,072 | get-left-button-fn-fn.tex | rwoldford_Quail/doc/tex/window-basics/get-left-button-fn-fn.tex | \headerbox{GET-LEFT-BUTTON-FN}{}{FUNCTION}
{\bf Description}
No description available.
{\bf Lambda List}
(CANVAS)
{\bf Arguments}
\beginhang
{\bf Required}\hspace{2em}
{\bf CANVAS}
\endhang
{\bf Home Package}
WINDOW-BASICS
| 273 | Common Lisp | .l | 12 | 17.583333 | 43 | 0.735426 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a86a6c2346fd7c39a125811a26a447781e5212e13f6258bf6bc42f277cc3833f | 33,072 | [
-1
] |
33,073 | stardark-gray-colourst-var.tex | rwoldford_Quail/doc/tex/window-basics/stardark-gray-colourst-var.tex | \headerbox{*DARK-GRAY-COLOUR*}{}{VARIABLE}
{\bf Description}
No description available.
{\bf Default value}
4210752
{\bf Home Package}
WINDOW-BASICS
| 176 | Common Lisp | .l | 7 | 20.142857 | 43 | 0.756757 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | e631db67ce0a4f64630181f69b73877e2a28fbd64920344adc19b1518fe95591 | 33,073 | [
-1
] |
33,074 | stargray-colorstar-var.tex | rwoldford_Quail/doc/tex/window-basics/stargray-colorstar-var.tex | \headerbox{*GRAY-COLOR*}{}{VARIABLE}
{\bf Description}
No description available.
{\bf Default value}
8421504
{\bf Home Package}
WINDOW-BASICS
| 170 | Common Lisp | .l | 7 | 19.285714 | 37 | 0.753521 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 32ab043d7cfa87e02297e56c5e9c92f48355c8a259c795c8b4f8661667e562ea | 33,074 | [
-1
] |
33,075 | starsystem-default-men-var.tex | rwoldford_Quail/doc/tex/window-basics/starsystem-default-men-var.tex | \headerbox{*SYSTEM-DEFAULT-MENUBAR*}{}{VARIABLE}
{\bf Description}
The default menubar of the system.
{\bf Default value}
(\#\<CCL:APPLE-MENU ""\> \#\<CCL:MENU "File"\> \#\<CCL:MENU "Edit"\> \#\<CCL:MENU "Eval"\> \#\<CCL:MENU "Tools"\> \#\<CCL:MENU "Windows"\>)
{\bf Home Package}
WINDOW-BASICS... | 324 | Common Lisp | .l | 7 | 41.285714 | 141 | 0.635135 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | eaeb9513f7de062a089eee15c7f4b3241f72948b892f0e1d593df12ffc1902a0 | 33,075 | [
-1
] |
33,076 | set-up-default-canvas-r-fn.tex | rwoldford_Quail/doc/tex/window-basics/set-up-default-canvas-r-fn.tex | \headerbox{SET-UP-DEFAULT-CANVAS-REGION}{}{FUNCTION}
{\bf Description}
Sets the default region where a new canvas will appear on the screen.
{\bf Lambda List}
(\&OPTIONAL LEFT BOTTOM WIDTH HEIGHT)
{\bf Arguments}
\beginhang
{\bf \&optional}\hspace{2em}
{\bf LEFT}
{\bf BOTTOM}
... | 418 | Common Lisp | .l | 15 | 21.933333 | 70 | 0.729651 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 207ec5a0019884f624fa317c45856ed663b8b242f396165a2d7c0c53c9c667d5 | 33,076 | [
-1
] |
33,077 | staryellow-colourstar-var.tex | rwoldford_Quail/doc/tex/window-basics/staryellow-colourstar-var.tex | \headerbox{*YELLOW-COLOUR*}{}{VARIABLE}
{\bf Description}
No description available.
{\bf Default value}
16511493
{\bf Home Package}
WINDOW-BASICS
| 174 | Common Lisp | .l | 7 | 19.857143 | 40 | 0.760274 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 9cb2c3f894fe9358f6fc95516b21916fde4f038ef6a4f5fee603c3db36c220ca | 33,077 | [
-1
] |
33,078 | control-key-p-fn.tex | rwoldford_Quail/doc/tex/window-basics/control-key-p-fn.tex | \headerbox{CONTROL-KEY-P}{}{FUNCTION}
{\bf Description}
Tests whether the control key is being held down.
{\bf Arguments}
{\bf Home Package}
WINDOW-BASICS
| 182 | Common Lisp | .l | 6 | 24.833333 | 50 | 0.754839 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 1e12e314358579c7958410756750948edebf3495e235f369bfcf1ef53775e331 | 33,078 | [
-1
] |
33,079 | starbright-white-color-var.tex | rwoldford_Quail/doc/tex/window-basics/starbright-white-color-var.tex | \headerbox{*BRIGHT-WHITE-COLOR*}{}{VARIABLE}
{\bf Description}
No description available.
{\bf Default value}
16711422
{\bf Home Package}
WINDOW-BASICS
| 179 | Common Lisp | .l | 7 | 20.571429 | 45 | 0.761589 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 81bb92617d92217ffaca874609bdd31e6fe162e78c8722c5577897dc5a0b1a8d | 33,079 | [
-1
] |
33,080 | redisplay-p-of-gf.tex | rwoldford_Quail/doc/tex/window-basics/redisplay-p-of-gf.tex | \headerbox{REDISPLAY-P-OF}{}{GENERIC-FUNCTION}
{\bf Description}
No description available.
{\bf Lambda List}
(CANVAS-REDISPLAY-MIXIN)
{\bf Arguments}
\beginhang
{\bf Required}\hspace{2em}
{\bf CANVAS-REDISPLAY-MIXIN}
\endhang
{\bf Home Package}
WINDOW-BASICS
| 309 | Common Lisp | .l | 12 | 20.583333 | 47 | 0.756757 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 446ae706eb2671af78d610a9e9c7da92e7dc36aa663506015ab67b83beb92124 | 33,080 | [
-1
] |
33,081 | left-title-items-of-gf.tex | rwoldford_Quail/doc/tex/window-basics/left-title-items-of-gf.tex | \headerbox{LEFT-TITLE-ITEMS-OF}{}{GENERIC-FUNCTION}
{\bf Description}
No description available.
{\bf Lambda List}
(MENU-CANVAS)
{\bf Arguments}
\beginhang
{\bf Required}\hspace{2em}
{\bf MENU-CANVAS}
\endhang
{\bf Home Package}
WINDOW-BASICS
| 292 | Common Lisp | .l | 12 | 19.166667 | 52 | 0.743802 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a564a8a5634b25739173d5376bf137a4e6572fb3fd0befb33c80677e95c00683 | 33,081 | [
-1
] |
33,082 | region-left-mc.tex | rwoldford_Quail/doc/tex/window-basics/region-left-mc.tex | \headerbox{REGION-LEFT}{}{QUAIL-KERNEL::MACRO}
{\bf Description}
No description available.
{\bf Lambda List}
(R)
{\bf Arguments}
\beginhang
{\bf Required}\hspace{2em}
{\bf R}
\endhang
{\bf Home Package}
WINDOW-BASICS
| 267 | Common Lisp | .l | 12 | 17.083333 | 47 | 0.723502 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | b3a8d5d3afb8f6f5d33de403fbdd9c87bc5d34be8403e0e67b0b7b2974a38cb4 | 33,082 | [
-1
] |
33,083 | set-system-default-menu-fn.tex | rwoldford_Quail/doc/tex/window-basics/set-system-default-menu-fn.tex | \headerbox{SET-SYSTEM-DEFAULT-MENUBAR}{}{FUNCTION}
{\bf Description}
Sets the *system-default-menubar* to be the value of the optional argument menubar ( defaults to the Macintosh's *default-menubar* ) .
{\bf Lambda List}
(\&OPTIONAL MENUBAR)
{\bf Arguments}
\beginhang
{\bf \&optional}\hspac... | 405 | Common Lisp | .l | 12 | 28.583333 | 135 | 0.743662 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 6bc91da98edd5faaf189160e2315ab774a5e73968ce3a2a02e572ad5b6d1f2d4 | 33,083 | [
-1
] |
33,084 | prompt-for-ps-filenames-fn.tex | rwoldford_Quail/doc/tex/window-basics/prompt-for-ps-filenames-fn.tex | \headerbox{PROMPT-FOR-PS-FILENAMES}{}{FUNCTION}
{\bf Description}
Prompt user for postscript file information for the given canvas.
{\bf Lambda List}
(CANVAS)
{\bf Arguments}
\beginhang
{\bf Required}\hspace{2em}
{\bf CANVAS}
\endhang
{\bf Home Package}
WINDOW-BASICS
| 318 | Common Lisp | .l | 12 | 21.333333 | 66 | 0.753731 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 3e5a3b114b69fd6320e94b20fe9058f62098d5f36998c2d14d82295a0918671d | 33,084 | [
-1
] |
33,085 | startan-colourstar-var.tex | rwoldford_Quail/doc/tex/window-basics/startan-colourstar-var.tex | \headerbox{*TAN-COLOUR*}{}{VARIABLE}
{\bf Description}
No description available.
{\bf Default value}
9400634
{\bf Home Package}
WINDOW-BASICS
| 170 | Common Lisp | .l | 7 | 19.285714 | 37 | 0.753521 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | aede3b188935fb28451d3072051256f56aa75a2870fba1f1ae7549f8975a98e6 | 33,085 | [
-1
] |
33,086 | plus-object-gf.tex | rwoldford_Quail/doc/tex/new-math/plus-object-gf.tex | \headerbox{PLUS-OBJECT}{}{GENERIC-FUNCTION}
{\bf Description}
No description available.
{\bf Lambda List}
(A B)
{\bf Arguments}
\beginhang
{\bf Required}\hspace{2em}
{\bf A}
{\bf B}
\endhang
{\bf Home Package}
NEW-MATH
| 277 | Common Lisp | .l | 13 | 15.846154 | 44 | 0.707763 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 140b6240681c98a314f18a630a4251278906a72aed1b99406bb248c62b6f369e | 33,086 | [
-1
] |
33,087 | defmethod-multi-mc.tex | rwoldford_Quail/doc/tex/quail-kernel/defmethod-multi-mc.tex | \headerbox{DEFMETHOD-MULTI}{}{MACRO}
{\bf Description}
No description available.
{\bf Lambda List}
(\&REST DEFMETHOD-ARGS)
{\bf Arguments}
\beginhang
{\bf \&rest}\hspace{2em}
{\bf DEFMETHOD-ARGS}
\endhang
{\bf Home Package}
QUAIL-KERNEL
| 287 | Common Lisp | .l | 12 | 18.75 | 37 | 0.729958 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | ca5fae5c5a20328ad3a65876277b1cab18e8902ab5a9990ff0ddb09bcc9286eb | 33,087 | [
-1
] |
33,088 | collect-slices-mc.tex | rwoldford_Quail/doc/tex/quail-kernel/collect-slices-mc.tex | \headerbox{COLLECT-SLICES}{}{QUAIL-KERNEL::MACRO}
{\bf Description}
Provides straightforward iterations over selected slices of a refable object. Syntax: ( collect-slices ( slice-var object slices [order] ) \{form\}* ) First collect-slices evaluates the form object, which should produce a refable object. It then... | 996 | Common Lisp | .l | 12 | 77.833333 | 647 | 0.766385 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 931ea7caab67834feadbd3511f1485f26d9f0953587efaf84352b62277cfbb26 | 33,088 | [
-1
] |
33,089 | doslices-mc.tex | rwoldford_Quail/doc/tex/quail-kernel/doslices-mc.tex | \headerbox{DOSLICES}{}{QUAIL-KERNEL::MACRO}
{\bf Description}
Provides straightforward iteration over selected slices of a refable object. Syntax: ( doslices ( slice-var object slices \{[return-form] \| [order]\} ) \{form\}* ) First doslices evaluates the form object, which should produce a refable object. It th... | 1,195 | Common Lisp | .l | 12 | 94.416667 | 828 | 0.759825 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | bf0c5ee32c0fdf6a267740309121535c8acdda0417238e439e33346c22a0bfda | 33,089 | [
-1
] |
33,090 | drawline.ps | rwoldford_Quail/foreign/postscript/drawline.ps | %------------------------------------------------------------------------------
% PROCEDURE: ps_canvas_draw_line
%------------------------------------------------------------------------------
% DESCRIPTION: This procedure draws a line between given coordinates (x1,y1)
% and (x2,y2). Optional arguments are colour... | 951 | Common Lisp | .l | 28 | 31.357143 | 80 | 0.532468 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 3bc09885162e32892a158f32bd198af871591ec4edb80c597057f7b1b9fabe03 | 33,090 | [
-1
] |
33,091 | fpolygon.ps | rwoldford_Quail/foreign/postscript/fpolygon.ps | %------------------------------------------------------------------------------
% PROCEDURE: ps_canvas_draw_filled_polygon
%------------------------------------------------------------------------------
% DESCRIPTION: This procedure accepts a variable number of pairs of
% coordinates on the stack ... | 1,044 | Common Lisp | .l | 28 | 32.178571 | 80 | 0.463054 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 21d02697b51947bd2722d2254dce3f3914e47a96cb117c9513a50760b72b336a | 33,091 | [
-1
] |
33,092 | fellipse.ps | rwoldford_Quail/foreign/postscript/fellipse.ps | %-------------------------------------------------------------------------------
% PROCEDURE: ps_canvas_draw_filled_ellipse
%------------------------------------------------------------------------------
% DESCRIPTION: This function is identical to ps_canvas_draw_ellipse save that
% it fills the d... | 1,083 | Common Lisp | .l | 25 | 33.64 | 81 | 0.428166 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | ff62fbd08cc2a22df24fa70a65ceece00e278b1216676b195db630e358746cc4 | 33,092 | [
-1
] |
33,093 | defaults.ps | rwoldford_Quail/foreign/postscript/defaults.ps | /ps_draw_dict 30 dict def
ps_draw_dict /mtrx matrix put % Allocated space for save mtrx
%------------------------------------------------------------------------------
% PROCEDURE: ps_convert_canvas_to_pages
%------------------------------------------------------------------------------
% DESCRIPTION: ... | 6,976 | Common Lisp | .l | 170 | 36.005882 | 94 | 0.574412 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | b227d67c565455a3cd9e112f0e1fba900522d1ccd7f79a9e879ce63247b02d31 | 33,093 | [
-1
] |
33,094 | ellipse.ps | rwoldford_Quail/foreign/postscript/ellipse.ps | %------------------------------------------------------------------------------
% PROCEDURE: ps_canvas_draw_ellipse
%------------------------------------------------------------------------------
% DESCRIPTION: This function draws an ellipse (or circle) given the x and y
% offsets from the origin ... | 1,577 | Common Lisp | .l | 35 | 37.171429 | 80 | 0.49838 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 81fb0e4e9f071dab9423441fc24df4da7e7309a03fc3af156b25fe0ff61ac94f | 33,094 | [
-1
] |
33,095 | quail.sty | rwoldford_Quail/foreign/tex/styles/quail.sty | % October 16, 11:12 am, by D.L. Chapman
% use: \headerbox{word}{another}{last words}
\def\headerbox#1#2#3{\par\vspace*{3mm}
\noindent
\begin{picture}(469,54)(0,0)
\thicklines
\put(0,0){\framebox(468,45){~#1 \hspace*{\fill} #2 \hspace*{\fill} #3~} }
\end{picture}
\par \vspace*{3mm}}
%use: \beginhang{your... | 850 | Common Lisp | .l | 24 | 29.666667 | 75 | 0.617359 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a9c915932b20097440fd1e9bfcebb6126047139f4e9a3fb0cae891f4296a1f54 | 33,095 | [
-1
] |
33,096 | mouse-behaviour.lsp | rwoldford_Quail/comments/mouse-behaviour.lsp | #|
This is an unsupported version of Quail. It is incomplete but might
give you a flavour of what is available.
Use at your own risk.
Note that Quail assumes a three button mouse
left-button = Mac mouse button
middle-button = Option + Mac mouse
right-button = command (clover leaf) + Mac mouse
Each mous... | 569 | Common Lisp | .l | 16 | 32.6875 | 70 | 0.775093 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 8b7fdfa4a11c2f63d6c75f38bf3373702db78a32dd2bf26504db219930d934d0 | 33,096 | [
-1
] |
33,099 | whats-new.lsp | rwoldford_Quail/comments/whats-new.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; whats-new.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1995 Statistical Computing Laborato... | 4,411 | Common Lisp | .l | 121 | 22.347107 | 84 | 0.401554 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 3fe54452eb3346aa93da660e5982b4ae3add02f8b3eacffc3884790c1e8e24b4 | 33,099 | [
-1
] |
33,100 | fixes.lsp | rwoldford_Quail/comments/fixes.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; fixes.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1995 Statistical Computing Laboratory, ... | 760 | Common Lisp | .l | 25 | 26.76 | 84 | 0.347051 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 427e1f55f59282bfc83a21578684db5c3258420884c422dde31f1e30e8a983c7 | 33,100 | [
-1
] |
33,101 | re-enable-menus.lsp | rwoldford_Quail/comments/re-enable-menus.lsp | (in-package :q-user)
(defvar *all-menus*
(list ccl:*apple-menu*
ccl:*edit-menu*
ccl:*eval-menu*
ccl:*file-menu*
ccl:*tools-menu*
ccl:*windows-menu*
(q::quail-menu)
(q::quail-plot-menu)))
(defun re-enable-menubars (&rest whatever)
(declar... | 2,063 | Common Lisp | .l | 58 | 23.689655 | 77 | 0.490946 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | d96f1b2ef5743ddc47f10c5713b9149986a2eedd8d33349ef0652718deada20c | 33,101 | [
-1
] |
33,102 | bugs.lsp | rwoldford_Quail/comments/bugs.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Known Quail bugs and workarounds
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1995 Statistical Comput... | 986 | Common Lisp | .l | 32 | 27.65625 | 88 | 0.366316 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 00cba6db67452151a01e3d849c93594a6e2c53d9a9f9bd6695d0fbf911dae400 | 33,102 | [
-1
] |
33,120 | quail-user-package.lsp | rwoldford_Quail/source/quail-user-package.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; quail-user-package.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1990 Statistical Computing Labor... | 2,414 | Common Lisp | .l | 56 | 26.589286 | 87 | 0.343803 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | e5a5a52454fc8cd2c1ad53a7ef7ae554d858c2127d00ed70f5e14597b1a0d93d | 33,120 | [
-1
] |
33,121 | quail-package.lsp | rwoldford_Quail/source/quail-package.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; quail-package.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1990 Statistical Computing Laboratory... | 2,169 | Common Lisp | .l | 48 | 28.708333 | 85 | 0.345154 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | aed7ce7016caabffdc225c7b38d741a1f2c2fd5ea1a2a00c7c7dd61462e13e81 | 33,121 | [
-1
] |
33,127 | browser-load-bugs | rwoldford_Quail/source/analysis-map/browser-load-bugs | (mk::compile-browser)
; - Compiling system "browser"
; - Loading binary file "q;Binary (2.0):Analysis-map:browser
; bin:cl-extensions.fasl"
; - Loading binary file "q;Binary (2.0):Analysis-map:browser bin:hacks.fasl"
; - Loading binary file "q;Binary (2.0):Analysis-map:browser
; bin:grapher-... | 2,567 | Common Lisp | .l | 47 | 52.361702 | 109 | 0.710767 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 055bd2c6369779c24f4f65a21515b2d6b6a4d3a2fd1282ab8f8ca25865d227f8 | 33,127 | [
-1
] |
33,128 | display-net-load-bigs | rwoldford_Quail/source/analysis-map/display-net-load-bigs | ? (mk::compile-display-network)
; - Compiling system "display-network"
; - Compiling source file
; "q;Source:Analysis-map:display-network:quail-functions-mcl.lisp"
;Compiler warnings for "Devel:Quail:Source:Analysis-map:display-network:quail-functions-mcl.lisp" :
; Unused lexical variable VARIABLE, in... | 7,339 | Common Lisp | .l | 117 | 60.623932 | 104 | 0.727109 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | a929c8cde7eda042bda98f2ddb0cbc85790f5479aa5ae761a767e4c9243cffa9 | 33,128 | [
-1
] |
33,129 | views-mods.lsp | rwoldford_Quail/source/analysis-map/Misc/Views-mods-&-+s/views-mods.lsp | ;;; replace draw axis methods in axis.lisp to accomodate changes in
;;; canvas-font-ascent, -descent, and -height.
(defmethod draw-axis ((self axis) (position (eql :top)) vp)
(multiple-value-bind (xmin xmax ymin ymax) (bounds-of vp)
(if (tics? self)
(let* ((bw (basic-window-of vp))
... | 5,588 | Common Lisp | .l | 108 | 38.703704 | 86 | 0.550452 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 31e865f7ab78c5d94819de74bc8d9fa057b981fa18b795b618904a57e757fed6 | 33,129 | [
-1
] |
33,131 | graph-redisplay-fns.lsp | rwoldford_Quail/source/analysis-map/Misc/browser-obs/graph-redisplay-fns.lsp | ;;;
;;; Graph redisplay functions
;;;
(defun make-translation-vector (window)
(make-position (- (get-window-x-offset window))
(- (+ (get-window-y-offset window)
(get-window-height window)))))
(defun mac-redisplay-graph (window &aux (w-ptr (ask window wptr)))
(_B... | 587 | Common Lisp | .l | 15 | 32.6 | 68 | 0.636684 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | fe4f2f52386f7bf04e4e70c0eeb19a879e619efafae8697c752e540ddba53df3 | 33,131 | [
-1
] |
33,133 | graph-var.lsp | rwoldford_Quail/source/analysis-map/Misc/browser-obs/graph-var.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; graph-var.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) Statistical Computing Laboratory
;;; Universit... | 1,546 | Common Lisp | .l | 44 | 31.795455 | 86 | 0.440541 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 17b8613ff5bddd5755796eea394a2f23541bf77615fb1e13cf9e7f9b29e29aa4 | 33,133 | [
-1
] |
33,136 | graph-obs.lsp | rwoldford_Quail/source/analysis-map/Misc/browser-obs/graph-obs.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; This file contains the functions and data structures which
;;; originally defined in the file having the same name without the
;;; "obs" (for obsolete) extension. All code contained here has been
;;; superseded by other code.
;... | 2,016 | Common Lisp | .l | 43 | 33.813953 | 80 | 0.481879 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 89e14ba6e99116edfd016db48480d8f1ab411afc709ff353fa727fd761818eb6 | 33,136 | [
-1
] |
33,142 | z-load-base.lsp | rwoldford_Quail/source/analysis-map/Misc/old-setup-files/z-load-base.lsp | ;;;
;;; loader for Z
;;;
(let ((old-path-name *default-pathname-defaults*))
(setq *default-pathname-defaults*
*Z-directory*)
(load 'Z-functions)
(load 'Z-utility)
(load 'Z-icon)
(load 'Z-mixins)
(load 'Z)
(load 'ref-arrays)
(load 'Z-browser)
(load 'network-view)
... | 1,600 | Common Lisp | .l | 50 | 23.28 | 81 | 0.581028 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | b75dd202ba27e37f1adba73c73e9a9146f614e1092f2e3ffcb92f93d88a2f6f6 | 33,142 | [
-1
] |
33,143 | z-load.lsp | rwoldford_Quail/source/analysis-map/Misc/old-setup-files/z-load.lsp |
(unless (quail-y-or-n-p "Current value of *Z-directory* is ~s ~%~
Is this correct?"
(if (boundp '*Z-directory*)
*Z-directory*
(setf *Z-directory* NIL)))
(setf *Z-directory*
(progn
(write-line
(forma... | 694 | Common Lisp | .l | 17 | 29.941176 | 83 | 0.551515 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | ad490c7a50136a675c7da528bd67ae29595edc3b88c69adbcf3c1d28d99d28e6 | 33,143 | [
-1
] |
33,145 | compile-Z.mac | rwoldford_Quail/source/analysis-map/Misc/old-setup-files/compile-Z.mac | ;;;
;;; Compiler for Z. To compile, just load file compile-Z
;;;
(let ((old-path-name *default-pathname-defaults*))
(setf *default-pathname-defaults*
*Z-directory*)
(load 'Z-functions.mac)
(compile-file 'Z-functions.mac)
(load 'Z-utility.lisp)
(compile-file 'Z-utility.lisp)
(l... | 1,613 | Common Lisp | .l | 45 | 30.577778 | 81 | 0.665161 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 03f28d66425d424d8f5087879720a9bceff709b49c14e885b8db48239ce0db96 | 33,145 | [
-1
] |
33,147 | Z-setup.lsp | rwoldford_Quail/source/analysis-map/Misc/old-setup-files/Z-setup.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Z-setup.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1990 Statistical Computing Laboratory, University of Waterlo... | 562 | Common Lisp | .l | 20 | 25.1 | 86 | 0.240296 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 2d82f7ea4c0159aa8a791298f1cd275c4873f373eb49bbb30a97c69595dd4c36 | 33,147 | [
-1
] |
33,150 | views-package.lsp | rwoldford_Quail/source/views/views-package.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; views-package.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;;
;;; Copyright (c) 1991 Statistical Computing Laboratory, Unive... | 4,413 | Common Lisp | .l | 140 | 20.15 | 92 | 0.44952 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | abb1ba5cfc1c9fdec24133491e032df5629a010a174a03c367ac6196330ddbb4 | 33,150 | [
-1
] |
33,152 | one-per-case.lsp | rwoldford_Quail/source/views/d-views/one-per-case.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; one-per-case.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) Statistical Computing Laboratory
;;; Univer... | 27,262 | Common Lisp | .l | 564 | 31.450355 | 119 | 0.475778 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 5f578f83378a23fb5c3d065e0e118830c2195a7a026ebe92795c7499dae39d8a | 33,152 | [
-1
] |
33,153 | simple-lines.lsp | rwoldford_Quail/source/views/d-views/simple-lines.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; simple-lines.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) Statistical Computing Laboratory
;;; Univer... | 3,306 | Common Lisp | .l | 67 | 37.089552 | 92 | 0.484906 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 4569f3217d07556e67bbb0599fcc7a059ba7ed15df9228e3f81a4d22273da0ef | 33,153 | [
-1
] |
33,154 | boxplot.lsp | rwoldford_Quail/source/views/d-views/boxplot.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; boxplot.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) Statistical Computing Laboratory
;;; University ... | 14,676 | Common Lisp | .l | 311 | 29.553055 | 111 | 0.430787 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | de0b37fc81128a809b1df29a1d56b6866445d8203fe0cc5f96b49fbe434fdd10 | 33,154 | [
-1
] |
33,155 | axis.lsp | rwoldford_Quail/source/views/d-views/axis.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; axis.lisp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) Statistical Computing Laboratory
;;; University of ... | 35,799 | Common Lisp | .l | 759 | 27.620553 | 126 | 0.425498 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 24fd6703d18d8c322ea8866f17066fa03e38cbfcad5ae5d61dae84fee6284223 | 33,155 | [
-1
] |
33,156 | grid-view.lsp | rwoldford_Quail/source/views/d-views/grid-view.lsp | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; grid-view.lsp
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) Statistical Computing Laboratory
;;; University... | 12,538 | Common Lisp | .l | 256 | 35.429688 | 112 | 0.521598 | rwoldford/Quail | 0 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:43:28 AM (Europe/Amsterdam) | 3a71532081e217555bc46919081dfd7a2626a059135fd845c92ed6d299513609 | 33,156 | [
-1
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.