Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: Additional samples will be included in further updates.
C++ Modules -

Module

Short Description

DrawCirclesCommand

The sample DrawCirclesCommand introduces the most important technique: the command. A command name must be unique and can be executed by runCommand(). The command (DrawCircleCommand) shows how to access the document database, invoke user prompts and to create entities using a custom tracker (CDrawCircleTracker). For more details please also check the comments in the source and header files.

...

CustomEntity

The sample SpecialEntity demonstrates how a custom entity is created and registered. The custom entity inherits from base class OdDbCircle and is transformed visually by overwriting the entity's subWorldDraw() method. For more details please also check the comments in the source and header files.

CreateText

Coming soon …

DrawTemporaryEntities

Coming soon …

SelectObjects

Coming soon …

DocumentCommands

Coming soon …

GetClosestOsnap

Coming soon …

C++ Modules - OdRxModule and CFxCommand
This is a short summary about how a C++ module can be created, compiled and loaded into the host appliaction. All necessary steps are based on DrawCirclesCommand.

...