tipografia para el graficador de bode

Committer:
JAgustinOtero
Date:
Thu Dec 06 00:06:44 2018 +0000
Revision:
0:265a9be32d7e
Tipografia para el graficador de bode;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JAgustinOtero 0:265a9be32d7e 1 #define pos1 point(x+(4*i),(y-4),cruze);
JAgustinOtero 0:265a9be32d7e 2 #define pos2 point((x+1)+(4*i),(y-4),cruze);
JAgustinOtero 0:265a9be32d7e 3 #define pos3 point((x+2)+(4*i),(y-4),cruze);
JAgustinOtero 0:265a9be32d7e 4 #define pos4 point(x+(4*i),(y-3),cruze);
JAgustinOtero 0:265a9be32d7e 5 #define pos5 point((x+1)+(4*i),(y-3),cruze);
JAgustinOtero 0:265a9be32d7e 6 #define pos6 point((x+2)+(4*i),(y-3),cruze);
JAgustinOtero 0:265a9be32d7e 7 #define pos7 point(x+(4*i),(y-2),cruze);
JAgustinOtero 0:265a9be32d7e 8 #define pos8 point((x+1)+(4*i),(y-2),cruze);
JAgustinOtero 0:265a9be32d7e 9 #define pos9 point((x+2)+(4*i),(y-2),cruze);
JAgustinOtero 0:265a9be32d7e 10 #define pos10 point(x+(4*i),(y-1),cruze);
JAgustinOtero 0:265a9be32d7e 11 #define pos11 point((x+1)+(4*i),(y-1),cruze);
JAgustinOtero 0:265a9be32d7e 12 #define pos12 point((x+2)+(4*i),(y-1),cruze);
JAgustinOtero 0:265a9be32d7e 13 #define pos13 point(x+(4*i),y,cruze);
JAgustinOtero 0:265a9be32d7e 14 #define pos14 point((x+1)+(4*i),y,cruze);
JAgustinOtero 0:265a9be32d7e 15 #define pos15 point((x+2)+(4*i),y,cruze);
JAgustinOtero 0:265a9be32d7e 16 #define pos16 point((x+0)+(4*i),(y+1),cruze);
JAgustinOtero 0:265a9be32d7e 17 #define pos17 point((x+1)+(4*i),(y+1),cruze);
JAgustinOtero 0:265a9be32d7e 18 #define pos18 point((x+2)+(4*i),(y+1),cruze);
JAgustinOtero 0:265a9be32d7e 19 #define pos19 point((x+0)+(4*i),(y+2),cruze);
JAgustinOtero 0:265a9be32d7e 20 #define pos20 point((x+1)+(4*i),(y+2),cruze);
JAgustinOtero 0:265a9be32d7e 21 #define pos21 point((x+2)+(4*i),(y+2),cruze);
JAgustinOtero 0:265a9be32d7e 22 void Tipografia5x3(int Xp, int Yp, const char str,unsigned char Ip,const char CRUZE);
JAgustinOtero 0:265a9be32d7e 23 void GUION(void);
JAgustinOtero 0:265a9be32d7e 24 void f(void);
JAgustinOtero 0:265a9be32d7e 25 void d(void);
JAgustinOtero 0:265a9be32d7e 26 void A(void);
JAgustinOtero 0:265a9be32d7e 27 void B(void);
JAgustinOtero 0:265a9be32d7e 28 void C(void);
JAgustinOtero 0:265a9be32d7e 29 void D(void);
JAgustinOtero 0:265a9be32d7e 30 void E(void);
JAgustinOtero 0:265a9be32d7e 31 void F(void);
JAgustinOtero 0:265a9be32d7e 32 void G(void);
JAgustinOtero 0:265a9be32d7e 33 void H(void);
JAgustinOtero 0:265a9be32d7e 34 void I(void);
JAgustinOtero 0:265a9be32d7e 35 void J(void);
JAgustinOtero 0:265a9be32d7e 36 void K(void);
JAgustinOtero 0:265a9be32d7e 37 void L(void);
JAgustinOtero 0:265a9be32d7e 38 void M(void);
JAgustinOtero 0:265a9be32d7e 39 void N(void);
JAgustinOtero 0:265a9be32d7e 40 void O(void);
JAgustinOtero 0:265a9be32d7e 41 void P(void);
JAgustinOtero 0:265a9be32d7e 42 void R(void);
JAgustinOtero 0:265a9be32d7e 43 void S(void);
JAgustinOtero 0:265a9be32d7e 44 void T(void);
JAgustinOtero 0:265a9be32d7e 45 void U(void);
JAgustinOtero 0:265a9be32d7e 46 void V(void);
JAgustinOtero 0:265a9be32d7e 47 void W(void);
JAgustinOtero 0:265a9be32d7e 48 void X(void);
JAgustinOtero 0:265a9be32d7e 49 void Y(void);
JAgustinOtero 0:265a9be32d7e 50 void Z(void);
JAgustinOtero 0:265a9be32d7e 51 void CERO(void);
JAgustinOtero 0:265a9be32d7e 52 void UNO(void);
JAgustinOtero 0:265a9be32d7e 53 void DOS(void);
JAgustinOtero 0:265a9be32d7e 54 void TRES(void);
JAgustinOtero 0:265a9be32d7e 55 void CUATRO(void);
JAgustinOtero 0:265a9be32d7e 56 void CINCO(void);
JAgustinOtero 0:265a9be32d7e 57 void SEIS();
JAgustinOtero 0:265a9be32d7e 58 void SIETE();
JAgustinOtero 0:265a9be32d7e 59 void OCHO();
JAgustinOtero 0:265a9be32d7e 60 void NUEVE();
JAgustinOtero 0:265a9be32d7e 61 void ESPACIO();