When autocomplete results are available use up and down arrows to review and enter to select. Touch device users, explore by touch or with swipe gestures.
We should always be challenging the way we work. Especially when it comes to the mundane repetitive tasks. In just a few lines… [Video] | Things to come, Coding, Automation
We should always be challenging the way we work. Especially when it comes to the mundane repetitive tasks. In just a few lines of code we can quickly get the boundaries of rooms on a project and create ceilings from those. Here are a few piecesof code to get you there. curveLoops = List[CurveLoop]() for boundaryList in room.GetBoundarySegments(opts): curves = [] for boundary in boundaryList: curves.append(boundary.GetCurve()) curveLoop = CurveLoop.Create(curves) curveLoops.Add(curv...