Skip to content

Lines drawn on a 2D Canvas have strange "squashing" behaviour #104

@tiggerbiggo

Description

@tiggerbiggo

Minecraft 1.20.1
Fabric Loader version 0.15.10
Plethora 1.20.1-1.11.7

Example code is below, for a neural interface with overlay glasses

local neural = peripheral.wrap("back")
local canvas = neural.canvas()
canvas.clear()
local w, h = canvas.getSize()
local pointer = canvas.addLine({x=w/2, y=h/2}, {x=w/2, y=h/2}, 0xFFFFFFFF, 5)

local angleDeg = 0
local pointerLength = 10

while true do
    angleDeg = angleDeg + 5

    local pointerX = math.sin(math.rad(angleDeg)) * pointerLength
    local pointerY = math.cos(math.rad(angleDeg)) * pointerLength

    pointer.setPoint(1, pointerX + w/2, pointerY + h/2)
    pointer.setPoint(2, w/2, h/2)
    sleep(0.05)
end

This results in a line that rotates around the center of the screen, but when it goes horizontal the line get so thin it disappears.

PlethoraLine

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions