Dim transform As IpfcTransform3D transform = (New CCpfcTransform3D).Create(Nothing) For i = 0To3 For j = 0To3 transform.Matrix.Set(i, j, 0) Next Next transform.Matrix.Set(3, 3, 1) transform.Matrix.Set(0, 0, 1) transform.Matrix.Set(1, 1, 1) transform.Matrix.Set(2, 2, 1)
model = asyncConnection.Session.CurrentModel CType(model, IpfcViewOwner).GetCurrentView.Transform = TransForm asyncConnection.Session.CurrentWindow.Refresh() asyncConnection.Session.CurrentWindow.Repaint()