RE: [Connect update 4 C++] Problem with including PointCloudApi.h
Hi Nenad,[quote user="Nenad Poljcic"]I compile using Visual Studio.[/quote]Bmake is the standard tool, not Visual Studio, which requires a special care. But this is not the case I guess, because if I...
View Article[Connect update 4 C++] Problem with including PointCloudApi.h
Hi,My system is windows 7, VS 2013 I am trying to include PointCloudApi.h in my unmanaged project  and getting a lot of error messages.Header file cloudDescribe.h:#include "PointCloud/PointCloudApi.h"...
View Article[CONNECT C#] Yet another create cell question
I know there have been a lot of discussion about the problem of placing cells from cell libraries using C# in CONNECT. Well, here is another aspect.I've created som code which place a cell using...
View ArticleRE: [CE update 4 NET API] Editing PointCloud
Hi Nenad, in my opinion it's not the question about API, but about product: MicroStation allows to use existing point cloud data (lets say it's data consumer), but not to modify them. It's the role of...
View Article[CE update 4 NET API] Editing PointCloud
Hi,I was wondering if it is possible to edit, add points, remove, points, save POD file in NET API ?So far, I have managed to create PointCloudElement and add it to the modelbut I can not find a way to...
View ArticleRE: [CONNECT C#] Yet another create cell question
Hi Krister,[quote user="ksurell"]I know there have been a lot of discussion about the problem of placing cells from cell libraries using C# in CONNECT. [/quote]In my opinion this issue was mostly...
View ArticleRE: [V8i VBA] Automating rotated cell insertion - which Matrix3d method?
Function ConstructMatrix3D (ByVal degrees As Double) As Matrix3D Dim angle As Double angle = Radians (degrees)' Your angle is measured from North, so you may need to subtract 90 degrees if cell is...
View ArticleRE: [V8i VBA] Automating rotated cell insertion - which Matrix3d method?
Hi Jon, many thanks for the snippet.I was testing the Matrix3dFromAxisAndRotationAngle method prior to your reply but found I was getting the wrong rotation.I gave your function a test with the angle =...
View Article[V8i VBA] Automating rotated cell insertion - which Matrix3d method?
In an existing macro, I can supply a list of cartesian coordinates from a CSV file, select a target element and for each coordinate, calculate the bearing rotation (angle measured clockwise between...
View ArticleRE: [CONNECT C++] DgnElementSetTool fence & selection processing
[quote user="Brien Bastings"]If you don't want dynamics return false from _WantDynamics. [/quote]That was the problem. I turned off dynamics, which I had assumed to be off by default, and now it works...
View Article[CONNECT C++] DgnElementSetTool fence & selection processing
I seek guidance on writing a tool that performs fence processing using DgnElementSetTool. Unfortunately there is no example delivered with the SDK that illustrates fence processing using...
View ArticleRE: [CONNECT C#] Yet another create cell question
Hi, Thanks you for your (as always) quick and structured answer. I realize that there are interop calls to create cells the same way as in VBA. My impression was, however, that you have to work...
View ArticleRE: [CONNECT C#] Yet another create cell question
[quote user="ksurell"] I realize that there are interop calls to create cells the same way as in VBA[/quote]When you install MicroStation CONNECT Update 4 SDK, you will find an additional help manual...
View ArticleRE: [CONNECT C#] Yet another create cell question
I'm a bit confused how Bentley.Interop.MicroStationDGN and Bentley.GeometryNET relate. They both has Element, one has Point3D the other one DPoint3d etc. If I use Bentley.GeometryNET for the rest of my...
View ArticleRE: [CONNECT C++] Dropping Shared Cells to Normal Cells
[quote user="Bruce Reeves SRNS"]if ( eeh.GetElementType() == CELL_HEADER_ELM ) { // check for a Shared Cell auto cellQueryP = dynamic_cast<ICellQuery*>(&eeh.GetHandler()); if...
View Article[CONNECT C++] Dropping Shared Cells to Normal Cells
Trying to figure out how to drop a Shared Cell to a Normal Cell. I've got this:DgnModelRefP activeModelP = mdlModelRef_getActive();UInt32 filePos=elementRef_getFilePos(elemRef);if ( filePos == eof )...
View ArticleRE: [Connect C++] Attach reference file including a raster attachment
Any news regarding this issue ?
View ArticleRE: [CONNECT C++] Finding Shared Cell Definitions
Shared cell definitions are found only in the dictionary model and can be referenced by shared cell instances, dimensions, and area patterns (graphical elements) from multiple models, so you do need to...
View Article[CONNECT C++] Finding Shared Cell Definitions
How does one "find" a Shared Cell Definition? If I use GetGraphicsElementsP(), I can find Shared Cell Instances. If I use GetControlElementsP(), I see Type 66 elements. However, I never find type...
View ArticleRE: [CONNECT C++] Dropping Shared Cells to Normal Cells
[quote user="Bruce Reeves SRNS"]Can a DropGeometryPtr be used instead of mdlSharedCell_dropToNormalCell()?[/quote]Yes, mdlSharedCell_dropToNormal cell eventually calls the DisplayHandler::Drop method....
View Article