Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[orx-shapes] operator roundCorners only works between straight segments #355

Open
hamoid opened this issue Mar 19, 2025 · 0 comments
Open
Labels
bug Something isn't working

Comments

@hamoid
Copy link
Member

hamoid commented Mar 19, 2025

Operating System

Linux

OPENRNDR version

0.4.5-alpha8

ORX version

0.4.5-alpha8

Java version (if applicable)

No response

Describe the bug

contour.roundCorners(x) only rounds corners formed by pairs of straight segments.

I will investigate why.

Steps to reproduce the bug

import org.openrndr.application
import org.openrndr.extra.shapes.adjust.adjustContour
import org.openrndr.extra.shapes.operators.roundCorners
import org.openrndr.shape.Rectangle

fun main() = application {
    program {
        extend {
            val contours = listOf(
                Rectangle(100.0, 100.0, 100.0, 100.0).contour,
                adjustContour(Rectangle(400.0, 100.0, 100.0, 100.0).contour) {
                    selectVertex(0)
                    vertices.forEach { it.rotate(30.0) }
                }
            )

            val contoursRounded = contours.map {
                it.roundCorners(10.0)
            }

            drawer.contours(contours)
            drawer.translate(0.0, 150.0)
            drawer.contours(contoursRounded)
        }
    }
}

Image

@hamoid hamoid added the bug Something isn't working label Mar 19, 2025
@hamoid hamoid changed the title [orx-shapes] operator roundCorners does nothing between straight and curved contours [orx-shapes] operator roundCorners only works between straight contours Mar 19, 2025
@hamoid hamoid changed the title [orx-shapes] operator roundCorners only works between straight contours [orx-shapes] operator roundCorners only works between straight segments Mar 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant