• [MicroStation CONNECT Update 7 MDL]: mdlElement_stroke consumes memory

    mdlElement_stroke allocates memory for resulting points. Free() or delete() the pointer crashes MicroStation complete. In older versions (up to V8i) it was possible (and necessary). Is this a bug in mdlElement_stroke? Any correct way to free the pointer…
  • RE: Extended Element without IElementGraphicsProcessor callback

    The data for this extended element is an ACIS brep, which you've requested be converted to Parasolid with the override below: virtual bool _ProduceBodies (bool isCurved, int kernelType) const override{return kernelType== KERNEL_TYPE_PSOLID;}; The…