one other question say i have Main_vert_array =#() for a = 1 to meshcount do ( Temp_array = #() for i = 1 to vertcount do ( append Temp_array #([0,0,…
Thanks that was exactly what i wanted to do
Thanks so much I would give you more reputation but it won’t allow me to.
the nodes are always created in this order so how would i go about if i see a node created that starts with _101 it will select that node and everythi…
I managed to figure it out something like vx = (ReadBEfloat f) + Vert_array1[k].x vy = (ReadBEfloat f) + Vert_array1[k].y vz = (ReadBEfloat f) + Vert_…
this is the code to convert it in c# UInt16 mantissa = (UInt16)(value & 0x3FF); (extracts the last 10 bits) Byte exponent = (Byte)((value >>…
Thank you that was perfect
Thanks that helped me a lot is there an easy way to get the variable of a folder so the user can select a folder and its stored as a variable? Also i…