Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
src /
image /
[ HOME SHELL ]
Name
Size
Permission
Action
color
[ DIR ]
drwxr-xr-x
draw
[ DIR ]
drwxr-xr-x
gif
[ DIR ]
drwxr-xr-x
internal
[ DIR ]
drwxr-xr-x
jpeg
[ DIR ]
drwxr-xr-x
png
[ DIR ]
drwxr-xr-x
testdata
[ DIR ]
drwxr-xr-x
decode_example_test.go
7.5
KB
-rw-r--r--
decode_test.go
3.71
KB
-rw-r--r--
format.go
3.02
KB
-rw-r--r--
geom.go
6.35
KB
-rw-r--r--
geom_test.go
3.03
KB
-rw-r--r--
image.go
28.11
KB
-rw-r--r--
image_test.go
6.56
KB
-rw-r--r--
names.go
1.25
KB
-rw-r--r--
ycbcr.go
7.87
KB
-rw-r--r--
ycbcr_test.go
3.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : geom_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package image import ( "fmt" "testing" ) func TestRectangle(t *testing.T) { // in checks that every point in f is in g. in := func(f, g Rectangle) error { if !f.In(g) { return fmt.Errorf("f=%s, f.In(%s): got false, want true", f, g) } for y := f.Min.Y; y < f.Max.Y; y++ { for x := f.Min.X; x < f.Max.X; x++ { p := Point{x, y} if !p.In(g) { return fmt.Errorf("p=%s, p.In(%s): got false, want true", p, g) } } } return nil } rects := []Rectangle{ Rect(0, 0, 10, 10), Rect(10, 0, 20, 10), Rect(1, 2, 3, 4), Rect(4, 6, 10, 10), Rect(2, 3, 12, 5), Rect(-1, -2, 0, 0), Rect(-1, -2, 4, 6), Rect(-10, -20, 30, 40), Rect(8, 8, 8, 8), Rect(88, 88, 88, 88), Rect(6, 5, 4, 3), } // r.Eq(s) should be equivalent to every point in r being in s, and every // point in s being in r. for _, r := range rects { for _, s := range rects { got := r.Eq(s) want := in(r, s) == nil && in(s, r) == nil if got != want { t.Errorf("Eq: r=%s, s=%s: got %t, want %t", r, s, got, want) } } } // The intersection should be the largest rectangle a such that every point // in a is both in r and in s. for _, r := range rects { for _, s := range rects { a := r.Intersect(s) if err := in(a, r); err != nil { t.Errorf("Intersect: r=%s, s=%s, a=%s, a not in r: %v", r, s, a, err) } if err := in(a, s); err != nil { t.Errorf("Intersect: r=%s, s=%s, a=%s, a not in s: %v", r, s, a, err) } if isZero, overlaps := a == (Rectangle{}), r.Overlaps(s); isZero == overlaps { t.Errorf("Intersect: r=%s, s=%s, a=%s: isZero=%t same as overlaps=%t", r, s, a, isZero, overlaps) } largerThanA := [4]Rectangle{a, a, a, a} largerThanA[0].Min.X-- largerThanA[1].Min.Y-- largerThanA[2].Max.X++ largerThanA[3].Max.Y++ for i, b := range largerThanA { if b.Empty() { // b isn't actually larger than a. continue } if in(b, r) == nil && in(b, s) == nil { t.Errorf("Intersect: r=%s, s=%s, a=%s, b=%s, i=%d: intersection could be larger", r, s, a, b, i) } } } } // The union should be the smallest rectangle a such that every point in r // is in a and every point in s is in a. for _, r := range rects { for _, s := range rects { a := r.Union(s) if err := in(r, a); err != nil { t.Errorf("Union: r=%s, s=%s, a=%s, r not in a: %v", r, s, a, err) } if err := in(s, a); err != nil { t.Errorf("Union: r=%s, s=%s, a=%s, s not in a: %v", r, s, a, err) } if a.Empty() { // You can't get any smaller than a. continue } smallerThanA := [4]Rectangle{a, a, a, a} smallerThanA[0].Min.X++ smallerThanA[1].Min.Y++ smallerThanA[2].Max.X-- smallerThanA[3].Max.Y-- for i, b := range smallerThanA { if in(r, b) == nil && in(s, b) == nil { t.Errorf("Union: r=%s, s=%s, a=%s, b=%s, i=%d: union could be smaller", r, s, a, b, i) } } } } }
Close