cosic.rescue
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

fIIA_1_2.ps
application/postscript

Download raw (3.7 KB)

%!PS-Adobe-3.0
%
% ********************************************************************************
%
% Figure A.1 from the book: "The Theory of the Moire Phenomenon, Vol. II"
% by I. Amidror, published by Springer, 2007.
%
%		* * *  Copyright (c) 2007 EPFL  * * *
%
% Author: I. Amidror
%
% Modified: March 21, 2007
%
% ********************************************************************************
%
% Superpositions of two dot screens - second layer only
%
% ********************************************************************************
%


/inch {72 mul} def
/centiinch {0.72 mul} def
1.5 centiinch setlinewidth

/dim 250 def		% dimensions of the screen in centiinches
/dim2 125 def		% dim/2

/myrand {rand 2147483647 div 2 mul 1 sub} def	% random number between -1...1

1 setlinecap


/Helvetica findfont
10 scalefont setfont

0 inch -0.05 inch translate




/theta1 0 def
/theta2 0 def

/rot 0 def		% general rotation to prevent printer artifacts

/p1 3 def		% period for first (reference) dot screen
/p2 3 def		% period for second dot screen

/p1y 3 def		% period for first (reference) dot screen
/p2y 3 def		% period for second dot screen

/xshift1 -1 p1 mul def		% x phase shift for first dot screen (e.g. 0.5)
/yshift1 -1 p1y mul def		% y phase shift for first dot screen (e.g. 0.5)
/xshift2 0 p2 mul def		% x phase shift for second dot screen
/yshift2 0 p2y mul def		% y phase shift for second dot screen

/rr 1 def	% random numbers will be generated in the range -rr...rr
		% (in PostScript points!)


% draw first (reference) dot screen:

8 srand		% seed for rand

/a 0.001 def	% coefficient of x**2 for the parabolas

/y dim2 neg def

gsave
4.1 inch 9.4 inch translate
theta1 rot add rotate
gsave
0 p1y dim		% draw horizontal lines of dots
{newpath
	/x dim2 neg def
	/ysave exch dim2 p1y div round p1y mul sub def
	0 p1 dim	% draw a horizontal line of dots
		{/xsave exch dim2 p1 div round p1 mul sub def
		xsave x sub
		x y y mul a mul 1 mul add		% g1(x,y)
		add xshift1 add
		centiinch myrand rr mul sub 

		ysave y sub 
		y x x mul a mul 1 mul add		% g2(x,y)
		add yshift1 add
		centiinch myrand rr mul sub moveto
		0 0 rlineto
		/x x p1 add def
	} for
%	stroke
	/y y p1y add def
} for
-1.4 inch -1.35 inch moveto
%(A) show
grestore


gsave
0.5 centiinch setlinewidth
-1.35 inch 0 inch moveto
2.65 inch 0 inch rlineto
%stroke
0 inch -1.35 inch moveto
0 inch 2.65 inch rlineto
%stroke
grestore


gsave
/Times-Roman findfont
12 scalefont setfont
-0.09 inch -1.6 inch moveto
%((d)) show
grestore
grestore


% draw second dot screen:

8 srand		% same seed for rand

/a 0.001 def	% coefficient of x**2 for the parabolas

/y dim2 neg def

gsave
4.1 inch 9.4 inch translate
theta2 rot add rotate
0 p2y dim		% draw horizontal lines of dots
{newpath
	/x dim2 neg def
	/ysave exch dim2 p2y div round p2y mul sub def
	0 p2 dim	% draw a horizontal line of dots
		{/xsave exch dim2 p2 div round p2 mul sub def
		xsave x sub
		x					% g3(x,y)
		add xshift2 add
		centiinch myrand rr mul sub 

		ysave y sub
		y					% g4(x,y)
		add yshift2 add
		centiinch myrand rr mul sub moveto
		0 0 rlineto
		/x x p2 add def
	} for
	stroke
	/y y p2y add def
} for

-1.4 inch -1.35 inch moveto
%(B) show
grestore


gsave
1.95 inch 2.4 inch translate
0 inch 0 inch moveto
/Times-Bold findfont
12 scalefont setfont
(Figure A.1) show
/Times-Roman findfont
12 scalefont setfont
( from the book: ) show
/Times-Italic findfont
12 scalefont setfont
(The Theory of the Moire) show
-0.06 inch 0 inch rmoveto
(\302 Phenomenon) show
-0.15 inch -0.25 inch moveto
(Vol. II: Aperiodic Layers,) show
/Times-Roman findfont
12 scalefont setfont
( by I. Amidror, published by Springer, 2007.) show
1.7 inch -0.65 inch moveto
((Second layer only.)) show
grestore


showpage