CascadeStudio icon indicating copy to clipboard operation
CascadeStudio copied to clipboard

A Full Live-Scripted CAD Kernel in the Browser

Results 29 CascadeStudio issues
Sort by recently updated
recently updated
newest added

When, I was running the following code: ``` function DrawCylinder(Center, Radius, Length, Angle, Direction) { let shape = Cylinder(Radius, Length, false); shape = Rotate(Direction, Angle,shape, false); shape = Translate(Center, shape,...

I could imagine `Color("colorspec", [oc.TopoDS_Shape])` or something like that to apply a color to a list of objects. Sometimes I apply random colors to objects just to be able to...

I'm trying to create a simple Python script that can take a local file and open it using CascadeStudio. My idea was to encode the file in the same format...

Bumps [jpeg-js](https://github.com/eugeneware/jpeg-js) from 0.4.3 to 0.4.4. Release notes Sourced from jpeg-js's releases. v0.4.4 v0.4.4 (2022-06-07) feat: add comment tag encoding (#87) (13e1ffa), closes #87 fix: validate sampling factors (#106) (9ccd35f),...

dependencies

Hello, how can i remove fog from the scene, add more light to it and make bigger the view frustum so my whole model to be visible? Thank you in...

Hi. Performing operations such as Cut on several dozen Shapes takes significantly longer (~10-20 times) than when using CAD Builder (an application using the C ++ core) where the same...

Sometimes when performing operations on similar size shapes, such as Union, or Difference `ReferenceError: ___cxa_is_pointer_type is not defined` is produced. This is the simplest example of this I've found: ```javascript...

The text description here says keepObjects can be a `[boolean, boolean]`, but the type signature says `boolean?`: Trying to pass a list fails: I'm not sure if the docs or...

Hi. I am trying to create an edge from an arc: ``` let arc_curve = new oc.GC_MakeArcOfCircle(p1, p2, p3).Value(); let arc1 = new oc.BRepBuilderAPI_MakeEdge(arc_curve).Edge(); sceneShapes.push(arc1); ``` but I get the...

When I try to import a binary STL file that I exported from the demo application It outputs an error to the console and stops loading the model. Besides, ASCII...