Loading...
Processing Forum
Recent Topics
All Forums
Move this topic
Forum :
Share your Work
Programming Questions
Core Library Questions
Contributed Library Questions
Android Processing
Processing with Other Languages
Integration and Hardware
Library and Tool Development
Events and Opportunities
General Discussion
Sub forum :
Move this topic
Cancel
General Discussion
Other
fernandol..
parallel coordinates
in
General Discussion
•
Other
•
5 months ago
Does someone have any ideas of creating a parallel coordinates using processing? I am a beginner and I can't figure out how to draw that zigzag lines...
1
Replies(2)
tfguy44
Re: parallel coordinates
5 months ago
size(220, 220);
background(0);
int w = width/20;
int h = height/20;
for (int j=0;j<=height;j+=h) {
stroke(random(255), random(255), random(255));
for (int i=0;i<=width;i+=w) {
if ( i%2==0 ) {
line(i, j, i+w, j+h);
}
else {
line(i+w, j, i, j+h);
}
}
}
fernandol..
Re: Re: parallel coordinates
5 months ago
Hi tfguy44, thank you for inspiring me a lot!
Leave a comment on tfguy44's reply
Change topic type
Topic Type :
Discussions
Questions
No of days :
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
Change topic type
Cancel
Link this topic
Provide the permalink of a topic that is related to this topic
Permalink
Save
Close
Reply to fernandolby's question
Top
Reply
{"z4106057":[25080000002112045],"z26247066":[25080000002110806,25080000002146087]}
Statistics
2
Replies
321
Views
0
Followers
Tags
Cancel
parallel coordinates
Actions
Permalink
Related Posts
Is there a way to get the screen co...
Finding the position of a circle in...
Mapping abstract shape coordinates,...
drawing curves in processing
see x,y coordinates of cursor on sc...