-
Notifications
You must be signed in to change notification settings - Fork 0
/
mass_no.pde
49 lines (43 loc) · 1.06 KB
/
mass_no.pde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// mass_no.pde
// White Wild
//
// Created by Takumi Muraishi on 2018/1/22
// Copyright© Takumi Muraishi. All rights reserved.
//
void mass_no_swordman_r(float x, float y, float s){
swordman_r(x+15,y-150,s);
swordman_r(x+10,y-100,s);
swordman_r(x+5,y-50,s);
swordman_r(x,y,s);
swordman_r(x-5,y+50,s);
swordman_r(x-10,y+100,s);
swordman_r(x-15,y+150,s);
}
void mass_no_swordman_l(float x, float y, float s){
swordman_l(x+15,y-150,s);
swordman_l(x+10,y-100,s);
swordman_l(x+5,y-50,s);
swordman_l(x,y,s);
swordman_l(x-5,y+50,s);
swordman_l(x-10,y+100,s);
swordman_l(x-15,y+150,s);
}
void mass_no_archer_r(float x, float y, float s){
archer_r(x+15,y-150,s);
archer_r(x+10,y-100,s);
archer_r(x+5,y-50,s);
archer_r(x,y,s);
archer_r(x-5,y+50,s);
archer_r(x-10,y+100,s);
archer_r(x-15,y+150,s);
}
void mass_no_archer_l(float x, float y, float s){
archer_l(x+15,y-150,s);
archer_l(x+10,y-100,s);
archer_l(x+5,y-50,s);
archer_l(x,y,s);
archer_l(x-5,y+50,s);
archer_l(x-10,y+100,s);
archer_l(x-15,y+150,s);
}