PIPRIME.FR BLOG

Live fully to honor life

Tag True size -- Asymptote Gallery

đź”—generalities-fig012

Show generalities/fig0120.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Examples 2D | Generalities
Tags : #Basis | #Fixedscaling | #Size | #True size | #Frame | #Deferred drawing

// From Asympote's FAQ
size(10cm,0);

path p=(0,0)--(1,0);

frame object;
draw(object, scale(8cm)*p);

add(object);
add(object, (0, -40));

đź”—generalities-fig013

Show generalities/fig0130.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Examples 2D | Generalities
Tags : #Basis | #Fixedscaling | #Deferred drawing | #True size

// From Asympote's FAQ
size(10cm,0);

path p=(0,0)--(1,0);
picture object;
draw(object,scale(8cm)*p);

add(object);
add(object,(0,-40)); // Adds truesize object to currentpicture

0%