Files
Hoops_Exchange/exchange/exchangesource/CreatePRCCubes/modules/CreateLinkedItem.h
2025-12-15 22:06:49 +08:00

41 lines
2.2 KiB
C

/***********************************************************************************************************************
*
* Copyright (c) 2010 - 2022 by Tech Soft 3D, Inc.
* The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., and considered a trade secret
* as defined under civil and criminal statutes. Tech Soft 3D shall pursue its civil and criminal remedies in the event
* of unauthorized use or misappropriation of its trade secrets. Use of this information by anyone other than authorized
* employees of Tech Soft 3D, Inc. is granted only under a written non-disclosure agreement, expressly prescribing the
* scope and manner of such use.
*
***********************************************************************************************************************/
/**
* Sample CreatePRCCubes
* file CreateLinkedItem.cpp
* This file is containing the function allowing to create linked items.
*
*
***********************************************************************************************************************/
#pragma once
#include "../CreatePRCCubesDef.h"
#include "CreateGraphics.h"
//######################################################################################################################
A3DStatus createMarkupLinkedItemOnProduct(A3DAsmProductOccurrence* pPO, A3DAsmProductOccurrence *pPOTarget,
A3DMiscMarkupLinkedItem ** ppMLI);
A3DStatus createMarkupLinkedItemOnEntity(A3DEntity* pEntity, A3DAsmProductOccurrence *pPOTarget,
A3DMiscMarkupLinkedItem ** ppMLI);
A3DStatus createMarkupLinkedItemOnTopo(A3DEntity* pEntity, A3DEEntityType eTopoItemType,
A3DUns32 uiAdditionalIndexesSize,
A3DUns32* puiAdditionalIndexes,
A3DAsmProductOccurrence* pPOTarget,
A3DMiscMarkupLinkedItem ** ppMLI);
A3DStatus createMarkupLinkedItemOnTess(A3DEntity* pEntity, A3DEEntityType eTopoItemType,
A3DUns32 uiAdditionalIndexesSize,
A3DUns32* puiAdditionalIndexes,
A3DAsmProductOccurrence* pPOTarget,
A3DMiscMarkupLinkedItem ** ppMLI);