• vec3.angle(a,b)

    3
    0 Votes
    3 Posts
    2k Views
    z3devZ
    @sopatt Sorry to the late reply. You probably already know this but an ''orientation" is required to determine the rotation, and sign of the angle. This is probably the best implementation out there. And if you want then this could be added to the vec3 functions. https://stackoverflow.com/questions/5188561/signed-angle-between-two-3d-vectors-with-same-origin-within-the-same-plane
  • roadmap for v3

    2
    0 Votes
    2 Posts
    371 Views
    z3devZ
    @Christopher-Fry OH! A V3 user! Awesome! The modeling library is getting there, and pretty mulch complete, functional, and tested. We expect a few bugs, and a few more API improvements. But nothing radical. Also. we are setting up a new website which will have a landing page, both V2 and V3 web UI applications, and more. There's no plan yet for the BIG switch to V3. So, expect a few more V3 beta versions.
  • OpenSource Autocad web based funcionalities

    2
    0 Votes
    2 Posts
    1k Views
    z3devZ
    @patilanz Welcome, Sorry, I didn't see this before. DXF web editor. DXF is just a file format created by Autocad long long ago. There are many online websites that can read as well as create DXF files, including JSCAD. Does that help?
  • Modifying Variables From Imported Parametric model

    3
    0 Votes
    3 Posts
    2k Views
    z3devZ
    @shay-cerny Welcome This isn't exhaustive but lists some of the websites using JSCAD. https://openjscad.xyz/dokuwiki/doku.php?id=en:user_guide_help
  • Jscad.app prototype desktop app

    4
    0 Votes
    4 Posts
    2k Views
    z3devZ
    An application also has shortfalls. There's the problem of documentation as well as upgrades. Applications usually include a huge and often critic user manual. And applications will only receive the latest patches if the user notices and applies the fix. This is why the website is so appealing... it's easy.
  • How can I prevent my Cad design from

    2
    0 Votes
    2 Posts
    2k Views
    hrgdavorH
    @Shunder0 i do not understand even slightest what you are asking here
  • Load DXF

    2
    0 Votes
    2 Posts
    1k Views
    z3devZ
    @LucaNitti Welcome! There are a couple of ways to use DXF files. You can convert the DXF to another format, like SVG. Or you can import the DXF, and use the shapes to create different designs. You can convert using the JSCAD CLI command. If you want to use the shapes from the DXF file in designs then a project is required. https://openjscad.xyz/dokuwiki/doku.php?id=en:design_guide_projects
  • Small "shift+enter" bug in openjscad.xyz?

    3
    0 Votes
    3 Posts
    1k Views
    Hermann-SWH
    @hrgdavor Thanks: https://github.com/jscad/OpenJSCAD.org/issues/1317
  • Is the cli package also included in the web version?

    6
    1
    0 Votes
    6 Posts
    2k Views
    z3devZ
    @Jason-Sprouse hmm... The website doesn't have a backend service/process. Everything is handled by the browser, including loading designs. The only trick is for designs provided an a URL parameter. In this case, the URL is posted to a little script that reads the contents, stores the file locally, and returns the URL to the local file. Of course, some other backend service could be added.
  • Are there JSCAD user callbacks?

    4
    0 Votes
    4 Posts
    2k Views
    Jason SprouseJ
    @Hermann-SW said in Are there JSCAD user callbacks?: tionality? Wouldn't that also be displayed in the browser stack trace?
  • Realtime boolean preview using GPU image based csg!!

    1
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • some more progress with prototype.

    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • Themes for all 3 engines in the prototype

    1
    1
    0 Votes
    1 Posts
    866 Views
    No one has replied
  • Reusable OrbitControls and camera gizmo

    4
    1
    0 Votes
    4 Posts
    2k Views
    hrgdavorH
    default colors and transforms for babylon [image: 1670164849700-febb97cd-3c8c-425f-a7b4-703746fd89f4-image.png]
  • $100 Bounty OpenCsg port proof of concept

    1
    0 Votes
    1 Posts
    947 Views
    No one has replied
  • camera view gizmo cube

    1
    2
    0 Votes
    1 Posts
    993 Views
    No one has replied
  • Registration broken?

    2
    0 Votes
    2 Posts
    1k Views
    settingerS
    @Hermann-SW You are not alone! I had the same experience, back in March.
  • interesting new project

    2
    0 Votes
    2 Posts
    1k Views
    hrgdavorH
    @z3dev got my first email from this user group and daily digest. That is great news that you got this working.
  • Multipart project template others could find useful

    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • openscad.xyz support for "data:" URI scheme would be cool

    4
    0 Votes
    4 Posts
    2k Views
    z3devZ
    @Hermann-SW Good questions... The website has a little Perl script that does the download of the requested file, and checks the content. This does two things; only know file types are allowed, and this goes around CORS. https://github.com/jscad/OpenJSCAD.org/blob/master/packages/web/remote.pl I guess that supporting data URL would be possible, but there would have to be some similar checks for data type, etc.