I'm working with Point cloud. I would like display my point cloud with a factor scale in Z direction. Then I increase visually the default. I tested transformation "Scale" on my entity but it seems not work :
PointCloud c = new PointCloud(pts.Count,1, PointCloud.natureType.Multicolor);
c.Vertices = pts.ToArray();
c.DrawingStyle = PointCloud.drawingStyleType.Points;
c.Scale(new Point3D(0, 0, 0), 1, 1, 10); // Z => x10
viewportLayout1.Entities.Add(c);
Thanks for your help