Search found 73 matches

by furi
Fri May 01, 2015 3:37 am
Forum: Support and Development
Topic: Triangulating complex polygons
Replies: 6
Views: 4944

Re: Triangulating complex polygons

I~=Spam wrote:If it intersects itself, by definition, the method that is used to chop up the polygon is not defined. The reason for this is that the shape isn't a polygon if it intersects itself.
https://en.wikipedia.org/wiki/Complex_polygon
by furi
Fri May 01, 2015 2:30 am
Forum: Support and Development
Topic: Triangulating complex polygons
Replies: 6
Views: 4944

Triangulating complex polygons

Hi! I'm trying to work on a means to import .fla files into LOVE. I've got almost everything working, but in the case that a line intersects with itself, love.math.triangulate errors out. Are there any known alternatives to the built-in function that properly work in this situation? If not, how woul...
by furi
Sun Sep 07, 2014 8:14 am
Forum: Support and Development
Topic: LOVE 0.9.x does not start
Replies: 14
Views: 15255

Re: LOVE 0.9.x does not start

Actually, some progress! :megagrin: bbLeanSkin was interfering with LOVE. After disabling it, however, it still only shows up in the process list when executed from SciTE. The command I use is as follows: command.go.*.lua="C:\Users\wuffie\Tools\love-0.9.1-win64\love.exe" "$(FileDir)&q...
by furi
Sun Sep 07, 2014 1:34 am
Forum: Support and Development
Topic: LOVE 0.9.x does not start
Replies: 14
Views: 15255

Re: LOVE 0.9.x does not start

One last bump, I suppose. I tried the 32-bit version with no differences.
by furi
Sun Sep 07, 2014 12:49 am
Forum: Support and Development
Topic: Rotating the camera from the center rather than the top left
Replies: 2
Views: 3396

Re: Rotating the camera from the center rather than the top

Try using [wiki]love.graphics.push[/wiki], [wiki]love.graphics.pop[/wiki], [wiki]love.graphics.translate[/wiki] and [wiki]love.graphics.rotate[/wiki] in tandem. Love.graphics.push will save the current graphics translation so you can draw objects properly after the rotation. Love.graphics.pop will l...
by furi
Sat Sep 06, 2014 7:50 pm
Forum: Support and Development
Topic: Centring some buttons using Quickie Lib
Replies: 3
Views: 4421

Re: Centring some buttons using Quickie Lib

eka wrote:@furi

Hey, I really appreciate all the effort you took to explain this. I completely overlooked the Button size setter.

Here is a new screenshot: -snip-

And here is the new Code: https://gist.github.com/8012b136e3295add2efd

Again, Thanks!
No problem! :ultrahappy:
by furi
Sat Sep 06, 2014 4:10 am
Forum: Support and Development
Topic: "Questions that don't deserve their own thread" thread
Replies: 905
Views: 409889

Re: "Questions that don't deserve their own thread" thread

192.168.0.0 is the ip address for your router. You can only connect to other computers on the home network with this. You will need to open and/or forward the appropriate port in your router's configuration if you want the internet to be able to connect to your computer. Additionally, you may need ...
by furi
Sat Sep 06, 2014 3:29 am
Forum: Support and Development
Topic: Centring some buttons using Quickie Lib
Replies: 3
Views: 4421

Re: Centring some buttons using Quickie Lib

Sorry in advance, I haven't used Quickie in a while. Check out the README file for a little example. Additionally, check out this highlighted line on button.lua file , since it shows you the usage and arguments. (You can do this with all of the other lua files, as well, such as with checkbox.lua .) ...
by furi
Thu Sep 04, 2014 7:21 pm
Forum: Support and Development
Topic: LOVE 0.9.x does not start
Replies: 14
Views: 15255

Re: LOVE 0.9.x does not start

bartbes wrote:It seems to be related to SDL2 though, not the console.
Do you know what's causing the problem? I checked inside of the bbLean folder and I don't see any SDL libraries, so it doesn't seem like it's overriding anything.
by furi
Wed Sep 03, 2014 6:58 pm
Forum: Support and Development
Topic: LOVE 0.9.x does not start
Replies: 14
Views: 15255

Re: LOVE 0.9.x does not start

On the normal shell, running LOVE in SciTE, the process is there, but no window appears. Outside of SciTE, it works fine, though.