Retrogamecoding(.org) > Other Languages

Drawing with Go

(1/2) > >>

Tomaaz:
It's extremely easy.


--- Code: ---package main

import (
"github.com/gen2brain/raylib-go/raylib"
)

func main() {
szer := int32(900)
wys := int32(600)
rl.InitWindow(szer, wys, "Drawing with Golang")
rl.SetTargetFPS(60)
for !rl.WindowShouldClose() {
rl.BeginDrawing()
rl.ClearBackground(rl.RayWhite)
rl.DrawText("As easy as BASIC!", 300, 40, 30, rl.DarkGray)
rl.DrawLine(50, 90, 850, 90, rl.Black)
rl.DrawCircle(450, 350, 10, rl.DarkBlue)
rl.DrawCircleGradient(450, 350, 150, rl.Yellow, rl.DarkGreen)
rl.DrawCircleLines(450, 350, 200, rl.Black)
rl.DrawRectangleLines(10, 10, 880, 580, rl.Red)
rl.DrawRectangleGradientH(50, 100, 50, 50, rl.Maroon, rl.Gold)
rl.DrawRectangle(50, 500, 50, 50, rl.Brown)
rl.DrawRectangle(800, 100, 50, 50, rl.DarkGray)
rl.DrawRectangleGradientH(800, 500, 50, 50, rl.Purple, rl.DarkBlue)
rl.EndDrawing()
}
rl.CloseWindow()
}

--- End code ---

Aurel:
ha ha ...extremly easy ....  ;D
then ..Go.....Go...Gooo ..what a ploncker :D

Tomaaz:

--- Quote from: Aurel on February 09, 2019, 08:38:44 PM ---ha ha ...extremly easy ....  ;D

--- End quote ---

Says a person who's planning to learn C. If this is not easy, then well... good luck with your study.  ;D

Aurel:
pih...
just because one stupid letter E..... ;D
who care about such a freak like you ..better put your dick into
your energy drink can ...then you will pick up whole wisdom of the world. :P

Tomaaz:
I love when you lose it. I just wish I could see a video of you shouting this stuff at me.  ;D

Navigation

[0] Message Index

[#] Next page

Go to full version