Search found 188 matches

by monolifed
Mon Jan 28, 2019 11:37 pm
Forum: General
Topic: Floating Point color
Replies: 15
Views: 15407

Re: Floating Point color

Code: Select all

00: (0.00, 0.25) and 0
01: (0.25, 0.50)
10: (0.50, 0.75)
11: (0.75, 1.00) and 1
0.25, 0.50, 0.75 can be 00, 01, 10
or
0.25, 0.50, 0.75 can be 01, 10, 11
The problem is choice.
by monolifed
Fri Jan 25, 2019 10:59 pm
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 362685

Re: Löve Frames - A GUI Library

That is all.
- replaced assets with public domain ones
- some other changes that serve no purpose
by monolifed
Sun Jan 20, 2019 7:39 pm
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 362685

Re: Löve Frames - A GUI Library

Thanks.
- restored original theme
- added a new simple theme as default
- moved some stuff around after some linting
by monolifed
Wed Jan 16, 2019 9:54 pm
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 362685

Re: Löve Frames - A GUI Library

I had a hard time finding a demo/documentation for the lib. So, I am posting a snapshot of what I have. I got library from https://github.com/linux-man/LoveFrames and demo from https://github.com/cyborgize/LoveFrames-demo - Updated demo to 11 and tween, middleclass, utf8 libraries to the latest I co...
by monolifed
Fri Mar 04, 2016 1:09 pm
Forum: Support and Development
Topic: How can I draw gradual lines ? (curve)
Replies: 3
Views: 1805

Re: How can I draw gradual lines ? (curve)

I thought if it was a relatively thick line you could use a quad with gradient texture
by monolifed
Fri Mar 04, 2016 1:03 pm
Forum: Support and Development
Topic: Repeat increment until variable is a specific amount issue
Replies: 6
Views: 4778

Re: Repeat increment until variable is a specific amount issue

This might work too

Code: Select all

-- start, stop, step
for h = 2, 580, 5 do print(h) end
by monolifed
Fri Mar 04, 2016 2:44 am
Forum: Support and Development
Topic: How can I draw gradual lines ? (curve)
Replies: 3
Views: 1805

Re: How can I draw gradual lines ?

So you tried a thin mesh and it didn't work well?
by monolifed
Tue Mar 01, 2016 8:11 am
Forum: General
Topic: Trigonometry Problem
Replies: 8
Views: 4535

Re: Trigonometry Problem

norm(a cross b) = |a||b|sinC a dot b = |a||b|cosC C angle between a and b Edit: Also AFAIK C is the small angle thus between 0 and pi and atan2 might give results between 0 and pi I am too lazy to verify it though Edit2: ax*by-bx*ay is different from norm(a x b) as it preserves sign thus atan2 gives...
by monolifed
Mon Feb 29, 2016 7:03 pm
Forum: Libraries and Tools
Topic: love demos
Replies: 4
Views: 6803

love demos

These are the demos in love-demos-0.8.0.zip modified to work with 0.10.1