-
Notifications
You must be signed in to change notification settings - Fork 33
/
number_triangles.pl
executable file
·75 lines (58 loc) · 1.43 KB
/
number_triangles.pl
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/perl
# Author: Daniel "Trizen" Șuteu
# License: GPLv3
# Date: 25 May 2015
# https://github.com/trizen
#
## Generate magic triangles with n gaps between numbers
#
use 5.010;
use strict;
use warnings;
use GD::Simple;
use File::Spec::Functions qw(catfile);
my $num_triangles = shift(@ARGV) // 30; # duration: about 2 minutes
sub generate {
my ($n, $j, $data) = @_;
foreach my $i (1 .. $n) {
if ($i % $j == 0) {
$data->{$i} = 1;
}
}
return $n;
}
my $dir = "Blue Number Triangles";
if (not -d $dir) {
mkdir($dir)
or die "Can't create dir `$dir': $!";
}
foreach my $k (1 .. $num_triangles) {
my %data;
my $max = generate(500000, $k, \%data);
my $limit = int(sqrt($max)) - 1;
say "[$k of $num_triangles] Generating...";
# create a new image
my $img = GD::Simple->new($limit * 2, $limit + 1);
my $i = 1;
my $j = 1;
my $black = 0;
for my $m (reverse(0 .. $limit)) {
$img->moveTo($m, $i - 1);
for my $n ($j .. $i**2) {
if (exists $data{$j}) {
$black = 0;
$img->fgcolor('blue');
}
elsif (not $black) {
$black = 1;
$img->fgcolor('black');
}
$img->line(1);
++$j;
}
++$i;
}
open my $fh, '>:raw', catfile($dir, sprintf("%04d.png", $k));
print $fh $img->png;
close $fh;
}