Difference between revisions of "love.graphics.getPointSize (Deutsch)"

(German Translation.)
 
m (Fix link.)
 
Line 23: Line 23:
 
* [[love.graphics.point (Deutsch)|love.graphics.point]]
 
* [[love.graphics.point (Deutsch)|love.graphics.point]]
 
* [[love.graphics.setPointStyle (Deutsch)|love.graphics.setPointStyle]]
 
* [[love.graphics.setPointStyle (Deutsch)|love.graphics.setPointStyle]]
* [[love.graphics.setPointSize (Deutsch)|love.graphics.getPointSize]]
+
* [[love.graphics.setPointSize (Deutsch)|love.graphics.setPointSize]]
 
* [[love.graphics.getMaxPointSize (Deutsch)|love.graphics.getMaxPointSize]]
 
* [[love.graphics.getMaxPointSize (Deutsch)|love.graphics.getMaxPointSize]]
 
[[Category:Functions]]
 
[[Category:Functions]]

Latest revision as of 14:39, 5 November 2014

Gibt die aktuelle Größe mit welcher Punkte gezeichnet werden zurück.

Funktion

Übersicht

size = love.graphics.getPointSize( )

Argumente

Keine.

Rückgabewerte

number (Deutsch) size
Die aktuelle Größe.

Beispiel

Erhöht die Größe eines Punkts jeweils um 1.

function love.draw()
    local s = love.graphics.getPointSize() + 1;
    love.graphics.setPointSize(s);
    love.graphics.point(100, 100);
end

Siehe auch



Andere Sprachen