heres the code I have so far but this is just ugly. I don't want to use pictures because idk im stubborn.
Code: Select all
love.draw()
A = love.window.getWidth() - 100
B = love.window.getHeight() - 100
love.graphics.setLineWidth(3)
love.graphics.setLineStyle( 'smooth' )
--love.graphics.setInvertedStencil( recSizzor )
love.graphics.setColor(0,0,0)
love.graphics.polygon('fill',130,105,150,70,350,70,365,105)
love.graphics.rectangle('fill',100,100,A-100,B- 100)
love.graphics.setColor(255,255,255)
love.graphics.rectangle('fill',100,101,A-100,B-101)
love.graphics.setColor(255,0,0)
love.graphics.line( 100,100,130,100,150,70,350,70,365,100,A,100,A,B,100,B,100,100 )
end