Failed to read the rhino.DimLinear.points property using rhino3dm.js

While I can successfully access the rhino.DimLinear object properties, the exposed properties are incomplete compared to the API documentation. Specifically, the “points” property defined in DimLinear | rhino3dm is unavailable, and accessing it results in undefined.

console.log("geometry :", geometry);

-------

geometry : 
Object { richText: "", plainText: "24.84", objectType: {…}, isDeformable: false, hasBrepForm: false, isValid: true, userStringCount: 0 }
​
hasBrepForm: false
​
isDeformable: false
​
isValid: true
​
objectType: Object { name: "ObjectType_Annotation", value: 512 }
​
plainText: "24.84"
​
richText: ""
​
userStringCount: 0
​
<prototype>: Object { … }
ce0e75bb-ef56-4f4c-9782-f2de9992d078:577:13

----

console.log("points : ", geometry.points);
----
points :  undefined 

What steps should I take to resolve this issue?
Thank you for your support.

Are you sure you have the latest version of rhino3dm.js in use? points most definitely is implemented

1 Like

Apologies for the lack of clarity earlier. I used the simplified rhino3dm.js loader library “3DMloader.js” (from 01.1_basic_3dmLoader) to load data, instead of working directly with rhino3dm.js itself. Thank you for your response — I will now attempt to use rhino3dm.js directly.

Ah, maybe that is something @fraguada can tune up.