|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T d
Length: 853 (0x355) Types: TextFile Names: »dvi.h«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./DVIware/laser-setters/umd-dvi/h/dvi.h«
/* * Copyright (c) 1987 University of Maryland Department of Computer Science. * All rights reserved. Permission to copy for any purpose is hereby granted * so long as this copyright notice remains intact. */ /* DVI file info */ /* * Units of distance are stored in scaled points, but we can convert to * units of 10^-7 meters by multiplying by the numbers in the preamble. */ /* the structure of the stack used to hold the values (h,v,w,x,y,z) */ struct dvi_stack { i32 h; /* the saved h */ i32 v; /* the saved v */ i32 w; /* etc */ i32 x; i32 y; i32 z; }; struct dvi_stack dvi_current; /* the current values of h, v, etc */ int dvi_f; /* the current font */ #define dvi_h dvi_current.h #define dvi_v dvi_current.v #define dvi_w dvi_current.w #define dvi_x dvi_current.x #define dvi_y dvi_current.y #define dvi_z dvi_current.z