"Great customer service. The folks at Novedge were super helpful in navigating a somewhat complicated order including software upgrades and serial numbers in various stages of inactivity. They were friendly and helpful throughout the process.."
Ruben Ruckmark
"Quick & very helpful. We have been using Novedge for years and are very happy with their quick service when we need to make a purchase and excellent support resolving any issues."
Will Woodson
"Scott is the best. He reminds me about subscriptions dates, guides me in the correct direction for updates. He always responds promptly to me. He is literally the reason I continue to work with Novedge and will do so in the future."
Edward Mchugh
"Calvin Lok is “the man”. After my purchase of Sketchup 2021, he called me and provided step-by-step instructions to ease me through difficulties I was having with the setup of my new software."
Mike Borzage
January 03, 2026 2 min read

Need clean schedules, BOMs, measurements, or QA logs from Rhino/Grasshopper into Excel fast? Here’s a practical workflow that’s reliable, repeatable, and works on both small and very large models.
# Rhino Python - export selected objects to CSV
import rhinoscriptsyntax as rs, csv, os
objs = rs.GetObjects("Select objects to export", preselect=True)
if objs:
path = rs.SaveFileName("Save CSV", "CSV (*.csv)|*.csv||", "", "RhinoExport", "csv")
if path:
headers = ["Id","Name","Layer","Type","Length","Area","Volume","UserText"]
with open(path, "w", newline="", encoding="utf-8") as f:
w = csv.writer(f)
w.writerow(headers)
for o in objs:
t = rs.ObjectType(o)
length = rs.CurveLength(o) if rs.IsCurve(o) else ""
area = rs.SurfaceArea(o)[0] if rs.IsSurface(o) or rs.IsPolysurface(o) else (rs.MeshArea(o)[0] if rs.IsMesh(o) else "")
volume = rs.SurfaceVolume(o)[0] if rs.IsPolysurface(o) else (rs.MeshVolume(o)[0] if rs.IsMesh(o) else "")
ut = rs.GetUserText(o) or {}
w.writerow([str(o), rs.ObjectName(o) or "", rs.ObjectLayer(o), str(t), length, area, volume, repr(ut)])
print("Done.") Need Rhino licenses, upgrades, or plugin advice? Check NOVEDGE for expert sales and support.
Scaling up your workflow or standardizing exports across a team? The NOVEDGE team can recommend the right Rhino 8 plugins, license mix, and training resources. Explore Rhino options at NOVEDGE and streamline your data pipeline today.
You can find all the Rhino products on the NOVEDGE web site at this page.

January 06, 2026 11 min read
Read More
January 06, 2026 12 min read
Read More
January 06, 2026 2 min read
Read MoreSign up to get the latest on sales, new releases and more …