summaryrefslogtreecommitdiffhomepage
path: root/test/triangle.rb
blob: df5cad004d3c7db823dc11e8f2a728444b6d9efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'ruby2d'

set title: "Hello Triangle"

Triangle.new(
  x1: 320, y1:  50,
  x2: 540, y2: 430,
  x3: 100, y3: 430,
  color: ['red', 'green', 'blue']
)

show