<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Deviation between set of Points from a Point cloud in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11010134#M20196</link>
    <description>&lt;P&gt;Greetings to all, I want to let you know a small issue I am facing when writing a set of points from a pointcloud into a text file, performing some operations between them, and later when I'm reading this data and placing some generic models at their location, the items appear close to the location they are suppose to be but not at the exact position.&lt;/P&gt;&lt;P&gt;1°Script to export the set of points projected onto the XY plane&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;"1) get the point cloud instance"
ptCloud=doc.GetElement(ElementId(297061))
bb=ptCloud.get_BoundingBox(doc.ActiveView) 
planes=[]

"2) Get the points that visible fromt he active view"
#X boundaries
planes.append(Plane.CreateByNormalAndOrigin(XYZ.BasisX,bb.Min))
planes.append(Plane.CreateByNormalAndOrigin(-XYZ.BasisX,bb.Max))

#Y boundaries
planes.append(Plane.CreateByNormalAndOrigin(XYZ.BasisY,bb.Min))
planes.append(Plane.CreateByNormalAndOrigin(-XYZ.BasisY,bb.Max))

#Z boundaries
planes.append(Plane.CreateByNormalAndOrigin(XYZ.BasisZ,bb.Min))
planes.append(Plane.CreateByNormalAndOrigin(-XYZ.BasisZ,bb.Max))

filter=PointClouds.PointCloudFilterFactory.CreateMultiPlaneFilter(planes)

points=ptCloud.GetPoints(filter,0.001,999999) #Enumerator
OUT= points.Count      

pointList=[]
for pt in points:
    pointList.append(XYZ(pt.X,pt.Y,0)) 



import System
import clr 
clr.AddReference("System.Windows.Forms")
from System.Windows.Forms import OpenFileDialog, SaveFileDialog

"3). Create a new Text File and get its path: SaveFileDialog()"
dialogSave=System.Windows.Forms.SaveFileDialog()
dialogSave.Filter="File TXT|*.txt" #dialog.Filter="Archivos TXT|*.txt |Archivos CSV|*.csv"
dialogSave.Title= "Select a Text file"
dialogSave.OverwritePrompt= False #You are not overwritting a new file because it is just new!
result =dialogSave.ShowDialog()
if result== System.Windows.Forms.DialogResult.Cancel: #In case you choose to not open any file, Let the system know to do nothing
    pass

#3.1) Write the data:

string=[]
#string.append("Xcoord,Ycoord,Zcoord")
for i in range(0,len(pointList),1):
    a=str(i) + "," + str(pointList[i][0])+","+str(pointList[i][1]) +","+str(pointList[i][2])
    string.append(a)

path=dialogSave.FileName
"4) A Method to write data"
System.IO.File.WriteAllLines(path,string,System.Text.Encoding.UTF8)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2°Script to get the boundary by using alphashape algorithm&lt;/P&gt;&lt;P&gt;...Using Open3D library among others...&lt;/P&gt;&lt;P&gt;3°Importing the data into Revit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;"2) 1°method to Read the file "
list=System.IO.File.ReadAllLines(path) #read all the lines and keeps it in a list

"2)Place ball element"
boundaryCoord=[]
for line in list:
	listI=map(lambda X: float(X)*3.28084,line.split(","))
	boundaryCoord.append(listI)

famylies=FilteredElementCollector(doc).OfClass(FamilySymbol).ToElements()
ball=None
for f in famylies:
    if f.get_Parameter(BuiltInParameter.SYMBOL_NAME_PARAM).AsString() == "ballXYZ":
        ball=f
tr=Transaction(doc,"placing families")
tr.Start()
for coord in boundaryCoord:
	
	Loc=XYZ(coord[0],coord[1],0)
	doc.Create.NewFamilyInstance(Loc,ball,StructuralType.NonStructural)
tr.Commit()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4). Here is the deviation between the boundaries.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_0-1647474462400.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1037189i863C91334FC26A4B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_0-1647474462400.png" alt="MiguelGT17_0-1647474462400.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same deal occurred in a previous task that has to be with surface reconstruction. The mesh was placed 30 feet away from the original point cloud data (PCD) location.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_1-1647474699438.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1037191iC68F8F20FB922C54/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_1-1647474699438.png" alt="MiguelGT17_1-1647474699438.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We do also deployed the ConvertToInternalUnits method at step (3) to perform units conversion. Any thoughts on this one that heads me into the right direction to import my data correctly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Miguel G.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Mar 2022 00:00:07 GMT</pubDate>
    <dc:creator>MiguelGT17</dc:creator>
    <dc:date>2022-03-17T00:00:07Z</dc:date>
    <item>
      <title>Deviation between set of Points from a Point cloud</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11010134#M20196</link>
      <description>&lt;P&gt;Greetings to all, I want to let you know a small issue I am facing when writing a set of points from a pointcloud into a text file, performing some operations between them, and later when I'm reading this data and placing some generic models at their location, the items appear close to the location they are suppose to be but not at the exact position.&lt;/P&gt;&lt;P&gt;1°Script to export the set of points projected onto the XY plane&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;"1) get the point cloud instance"
ptCloud=doc.GetElement(ElementId(297061))
bb=ptCloud.get_BoundingBox(doc.ActiveView) 
planes=[]

"2) Get the points that visible fromt he active view"
#X boundaries
planes.append(Plane.CreateByNormalAndOrigin(XYZ.BasisX,bb.Min))
planes.append(Plane.CreateByNormalAndOrigin(-XYZ.BasisX,bb.Max))

#Y boundaries
planes.append(Plane.CreateByNormalAndOrigin(XYZ.BasisY,bb.Min))
planes.append(Plane.CreateByNormalAndOrigin(-XYZ.BasisY,bb.Max))

#Z boundaries
planes.append(Plane.CreateByNormalAndOrigin(XYZ.BasisZ,bb.Min))
planes.append(Plane.CreateByNormalAndOrigin(-XYZ.BasisZ,bb.Max))

filter=PointClouds.PointCloudFilterFactory.CreateMultiPlaneFilter(planes)

points=ptCloud.GetPoints(filter,0.001,999999) #Enumerator
OUT= points.Count      

pointList=[]
for pt in points:
    pointList.append(XYZ(pt.X,pt.Y,0)) 



import System
import clr 
clr.AddReference("System.Windows.Forms")
from System.Windows.Forms import OpenFileDialog, SaveFileDialog

"3). Create a new Text File and get its path: SaveFileDialog()"
dialogSave=System.Windows.Forms.SaveFileDialog()
dialogSave.Filter="File TXT|*.txt" #dialog.Filter="Archivos TXT|*.txt |Archivos CSV|*.csv"
dialogSave.Title= "Select a Text file"
dialogSave.OverwritePrompt= False #You are not overwritting a new file because it is just new!
result =dialogSave.ShowDialog()
if result== System.Windows.Forms.DialogResult.Cancel: #In case you choose to not open any file, Let the system know to do nothing
    pass

#3.1) Write the data:

string=[]
#string.append("Xcoord,Ycoord,Zcoord")
for i in range(0,len(pointList),1):
    a=str(i) + "," + str(pointList[i][0])+","+str(pointList[i][1]) +","+str(pointList[i][2])
    string.append(a)

path=dialogSave.FileName
"4) A Method to write data"
System.IO.File.WriteAllLines(path,string,System.Text.Encoding.UTF8)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2°Script to get the boundary by using alphashape algorithm&lt;/P&gt;&lt;P&gt;...Using Open3D library among others...&lt;/P&gt;&lt;P&gt;3°Importing the data into Revit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;"2) 1°method to Read the file "
list=System.IO.File.ReadAllLines(path) #read all the lines and keeps it in a list

"2)Place ball element"
boundaryCoord=[]
for line in list:
	listI=map(lambda X: float(X)*3.28084,line.split(","))
	boundaryCoord.append(listI)

famylies=FilteredElementCollector(doc).OfClass(FamilySymbol).ToElements()
ball=None
for f in famylies:
    if f.get_Parameter(BuiltInParameter.SYMBOL_NAME_PARAM).AsString() == "ballXYZ":
        ball=f
tr=Transaction(doc,"placing families")
tr.Start()
for coord in boundaryCoord:
	
	Loc=XYZ(coord[0],coord[1],0)
	doc.Create.NewFamilyInstance(Loc,ball,StructuralType.NonStructural)
tr.Commit()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4). Here is the deviation between the boundaries.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_0-1647474462400.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1037189i863C91334FC26A4B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_0-1647474462400.png" alt="MiguelGT17_0-1647474462400.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same deal occurred in a previous task that has to be with surface reconstruction. The mesh was placed 30 feet away from the original point cloud data (PCD) location.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_1-1647474699438.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1037191iC68F8F20FB922C54/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_1-1647474699438.png" alt="MiguelGT17_1-1647474699438.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We do also deployed the ConvertToInternalUnits method at step (3) to perform units conversion. Any thoughts on this one that heads me into the right direction to import my data correctly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Miguel G.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 00:00:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11010134#M20196</guid>
      <dc:creator>MiguelGT17</dc:creator>
      <dc:date>2022-03-17T00:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Deviation between set of Points from a Point cloud</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11011963#M20197</link>
      <description>&lt;P&gt;It looks like when you export the points you don't do any conversions from internal units, meaning that the points are exported in internal units. So using&amp;nbsp;&lt;SPAN&gt;ConvertToInternalUnits&amp;nbsp;on data that is already in internal units may produce invalid results. However, I don't see you using that method in the code you posted; it actually looks like you are exporting data in feet then scaling it so that one foot becomes one meter.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Another thing to consider is the Transform of the PointCloud. It is possible that the points are defined relative to the point cloud's position.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 16:38:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11011963#M20197</guid>
      <dc:creator>mhannonQ65N2</dc:creator>
      <dc:date>2022-03-17T16:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Deviation between set of Points from a Point cloud</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11015243#M20198</link>
      <description>&lt;P&gt;Actually, the cloudpoint is using revit system coordinates so it gets exported in Meters as that is the system unit&amp;nbsp; that has been set to my project.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_0-1647646511234.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038243i96118A95BAD00A49/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_0-1647646511234.png" alt="MiguelGT17_0-1647646511234.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I was looking up the&amp;nbsp;&lt;SPAN&gt;GetUnitsToFeetConversionFactor() method as it might have something to do with the deviation&amp;nbsp;issue but I'm confused where the GetScale() method comes from in Jeremy's samples:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://github.com/jeremytammik/RevitSdkSamples/blob/master/SDK/Samples/PointCloudEngine/CS/FileBasedPointCloud.cs" target="_blank"&gt;https://github.com/jeremytammik/RevitSdkSamples/blob/master/SDK/Samples/PointCloudEngine/CS/FileBasedPointCloud.cs&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_1-1647647399769.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038247i2CDF5C06A88C1D21/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_1-1647647399769.png" alt="MiguelGT17_1-1647647399769.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/824630"&gt;@jeremy_tammik&lt;/a&gt;&amp;nbsp;!, is there any particular command that gets Revit to pull the exact coordinates from the point cloud data?&amp;nbsp; I was implementing the implicit operator that converts cloudpoint into an XYZ point but not did not succeed at this: XYZ(Cloudpoint)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_2-1647648157611.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038262i25FDE525D5954DCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_2-1647648157611.png" alt="MiguelGT17_2-1647648157611.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and XYZ(cloudpoint.X,cloudpoint.Y,cloudpoint.Z) place the data close to the exact location&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_3-1647648332533.png" style="width: 365px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038263i1F011B56D194A555/image-dimensions/365x315?v=v2" width="365" height="315" role="button" title="MiguelGT17_3-1647648332533.png" alt="MiguelGT17_3-1647648332533.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Mar 2022 00:07:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11015243#M20198</guid>
      <dc:creator>MiguelGT17</dc:creator>
      <dc:date>2022-03-19T00:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Deviation between set of Points from a Point cloud</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11015325#M20199</link>
      <description>&lt;P&gt;So I looked into Revit point clouds a bit and it looks like different point clouds can define their own units. I can't tell if Revit does any unit conversion when you request points from a point cloud but its possible that Revit will give you the points in whatever units the point cloud is in. However, the NewFamilyInstance method requires an XYZ in feet. In your code (bellow)&amp;nbsp;make sure that Loc is in feet.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;	Loc=XYZ(coord[0],coord[1],0)
	doc.Create.NewFamilyInstance(Loc,ball,StructuralType.NonStructural)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspect that Revit does not take into consideration the transform of the point cloud when it gives you the points data. To quickly test this you could rotate your point cloud by 90° (via the Revit UI) before running your code. If the family instances are still placed where they were when the point cloud isn't rotated, that means that Revit doesn't transform the points into Revit's global coordinate system and you need to either do that yourself before exporting them or transform the location where you place the family instances.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The PointCloudType also has an Offset property so I recommend looking into that too. If that property of your point cloud's PointCloudType is about 30 feet, then this is possibly the source of your problem.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Mar 2022 01:27:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11015325#M20199</guid>
      <dc:creator>mhannonQ65N2</dc:creator>
      <dc:date>2022-03-19T01:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Deviation between set of Points from a Point cloud</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11019208#M20200</link>
      <description>&lt;P&gt;Thanks for replying me mhannon! I was not aware of the PointCloudType class. I'm very thankful to you for noticing me that. So far Scale property seems to throw back a pretty curious value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_1-1647878776054.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038904iFEDBF17B327A7101/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_1-1647878776054.png" alt="MiguelGT17_1-1647878776054.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The offset property scared me a little bit, but I will see what I can come up with it&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_0-1647878755092.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038903i5DBDB106F8FEA81C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_0-1647878755092.png" alt="MiguelGT17_0-1647878755092.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually it's my bad, I assumed that the pointcloud origin was placed at 0,0,0 coordinate but somehow when I import the cloud it gets fit at slightly different origin:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_0-1647881724469.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038931i0FD1FBCE5084F0DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_0-1647881724469.png" alt="MiguelGT17_0-1647881724469.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;by considering that vector, the points are placed correctly&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MiguelGT17_1-1647881780728.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1038932i3251478F0C7385D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MiguelGT17_1-1647881780728.png" alt="MiguelGT17_1-1647881780728.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 16:57:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deviation-between-set-of-points-from-a-point-cloud/m-p/11019208#M20200</guid>
      <dc:creator>MiguelGT17</dc:creator>
      <dc:date>2022-03-21T16:57:32Z</dc:date>
    </item>
  </channel>
</rss>

