Robert Harlander

Institut für Theoretische Teilchenphysik und Kosmologie
Fakultät für Mathematik, Informatik, Naturwissenschaften
RWTH Aachen University
52056 Aachen, Germany
phone: +49-241-80-27045
fax: +49-241-80-22187
harlander(at)physik.rwth-aachen.de
Büro: 28A414, Campus Melaten

Home

Brief CV

Research

Teaching

Outreach

Conferences

– Software –

Press

collaborations:

LHC and Philosophy



DFG RTG

[Up: aximate]

connecting objects

Objects like point, line, or arc return certain values, for example their current position. You can then use these values as options in other objects. This makes it easy to connect two objects, for example:
    $p1 = point({"type" => "empty",
		 "coordinates" => [[20,20]],
		 "polar" => [[50,0],[50,360]]});

    line({"type" => "line",
	  "color" => "Red",
	  "foot" => [[-20,30],[50,-50]],
	  "head" => [${$p1}{"coordinates"}]
	});

    line({"type" => "line",
	  "color" => "Green",
	  "foot" => [[20,-30],[-50,50]],
	  "head" => [${$p1}{"coordinates"}]
	});
main
aximate:connect (Robert Harlander)