The Drawing workspace

Was this article helpful?
1 out of 1 found this helpful

Comments

6 comments
Date Votes
  • Hello, this feature is really great! I just don't understand how to change the logo?

    0
  • Hi Alice,

    For any doubt or issue regarding the product you can also open a support ticket.

    To customize the logo you should derive the Sheet Class and return your own entities as follows:

    class MySheet : Sheet
    {
        MySheet(Sheet another) : base(another)
        {

        }

        protected override Entity[] CreateTitleBlock(double borderWidth, Color color, float lineWeight = 0.15)
        {
           // your title block: return the list of entity of you title block
          // return base.CreateTitleBlock(); // do not call the base       
        }

        protected override Entity[] GetLogo()
        {
           // your logo: return the list of entity of you logo (you can usee a Picture entity for a raster image)
          // return base.GetLogo(); // do not call the base
        }
    }
    1
  • Hi,

     

    This demo really helped me creating a drwing with the related views of the Model, I am having problems finding the PaperDemo project as I really wan tto have the dimensioning functionality in my POC in context of our usecase towards the company I work for. Is it possible to recieve this DEMO?

    I have tried looking in the demo packages but this demo isnt part of it

    BR,

    bas

    0
  • Hi Jose Miguel,

    After installing the Eyeshot SDK, you can find it in the installation directory, under the Demos folder. The default path is usually C:\Program Files\devDept\Eyeshot 2024\Demos.

    You can also access it via the Windows Start menu.

    0
  • Hi,

    Thanks indeed I found it, might I ask if there is some more detailed (more modular approach) and possible guideline on how to incorporate the dimensioning to a created drawing? As for now its doable using reverse engineering of course, but it would be appreciated :).

    Thank you!

    0
  • Hi, 

    The Text inserted in the vector view can be added to the model with the same position, being used in the vector view?

     

    0

Please sign in to leave a comment.

Articles in this section