File:Cosinus2.gif

Summary

Description
English: The cosine function on the interval is obtained from the cosine function on the interval
Deutsch: Die Kosinusfunktion auf dem Intervall geht aus der Kosinusfunktion auf dem Intervall hervor
Date
Source Own work
Author Auswahlaxiom
GIF development
InfoField
Source code
InfoField

Asymptote code

import graph;

unitsize(3cm);

real dt = 0.04;
int n = 0;

void ship() {
	write(n);
	shipout(outprefix() + format("-%04d", n));
	++n;
}

pen fix = rgb(0.3, 0, 0.7)+linewidth(2);
pen trans = rgb(0.7, 0, 0.3)+linewidth(2);

string pilabel(real x) {
	int n = floor(2*x/pi+0.5);
	if(n % 2 == 0) {
		return "$"+(n!=2 ? format("%d", n#2) : "")+"\pi$";
	} else {
		return "$\frac{"+(n!=1 ? format("%d", n) : "")+"\pi}2$";
	}
}

xaxis(Label("$x$", EndPoint, 2*E), 0, pi+0.2, LeftTicks(pilabel, n=3, Step=pi/2, NoZero), EndArrow);
yaxis(Label("$y$", EndPoint, 2*N), -1.2, 1.2, LeftTicks(n=2, Step=1), EndArrow);

path cl = box(truepoint(SW), truepoint(NE));
draw(cl, invisible);

draw(graph(cos, 0, pi/2), fix);
clip(cl);

for(real t = 0; t+dt/2 < 1; t += dt) {
	ship();
}

for(real t = 0; t+dt/2 < 2; t += dt) {
	save();
	draw(rotate(t*90, (pi/2, 0))*graph(cos, 0, pi/2), trans);
	clip(cl);
	ship();
	restore();
}

save();
draw(graph(cos, pi/2, pi), fix);
clip(cl);
for(real t = 0; t+dt/2 < 1; t += dt) {
	ship();
}
restore();

for(real t = 0; t+dt/2 < 2; t += dt) {
	save();
	draw(rotate(-t*90, (pi/2, 0))*graph(cos, pi/2, pi), trans);
	clip(cl);
	ship();
	restore();
}

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#Cosinus2.gif
Category:Self-published work Category:Cosine function Category:Animated GIF files
Category:Animated GIF files Category:CC-BY-SA-4.0 Category:Cosine function Category:PNG created with Asymptote code Category:Self-published work