Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

Davide Pizzolato

Verified Members
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

205 profile views

Davide Pizzolato's Achievements

Rookie

Rookie (2/14)

  • One Year In
  • Conversation Starter Rare
  • First Post Rare
  • One Month Later
  • Week One Done

Recent Badges

0

Reputation

  1. I have adapted a c-hook developed for mcam 2022 for mcam 2024, and a function stopped working correctly. I use BreakManyPieces like this: void splitSpline() { bool succf = false; EptrArray ents_to_break, ents_new, ents_wrong; BreakManyPiecesParams brk_par(true, 0.02); brk_par.m_Curves = true; brk_par.m_Dispose = PostBreakAction::Keep; brk_par.m_Method = SegmentationMethod::Tolerance; ents_to_break.RemoveAll(); NoStackEnt(entity); DB_LIST_ENT_PTR pFound = nullptr; DB_LIST_ENT_PTR pDB = db_start; do { get_raw_ent(false, &pDB, &pFound, &entity, ALIVE_BIT, S_ID | NB_ID, &succf); if (succf) { ents_to_break.Add(pFound); } } while (succf); if (ents_to_break.GetSize() > 0) { auto res = BreakManyPieces(ents_to_break, brk_par, ents_new, ents_wrong); //res is true //ents_to_break is 1 //ents_new.count is 2 //ents_wrong.count is 0 } } This ususally break my splines correctly but in mcam 2024 this happen: (Original entity) It breaks this spline in just two lines. If I do the same operation using the ribbon command with the same parameters it works correctly:
  2. I add a note for future reference if you pass nullptr to the method it would crash, you have to do something like this: DB_LIST_ENT_PTR e = nullptr; mirror_silent(&e, true, false, mirrorVector, 1, &succf);
  3. Mastercam 2022, I have LatheBarStock.dll (provided by cnc software) but it require to manually open and close the stock menu in order to make the settings effective.
  4. I need to set the stock for a lathe, is this possible? All I can see is MillStock. I also need to set the chucks, can I do it? Thanks
  5. Were you able to set up the stock? I'm trying to do the same thing.

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...