-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33feec5
commit baf9c57
Showing
15 changed files
with
90 additions
and
89 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
set(CMAKE_CURRENT_BINDING_DIR ${CMAKE_CURRENT_SOURCE_DIR}/.) | ||
project(Lib3MFExample_CPPDynamic) | ||
set(CMAKE_CXX_STANDARD 11) | ||
add_executable(Lib3MFExample_CPPDynamic "${CMAKE_CURRENT_SOURCE_DIR}/Lib3MF_example.cpp") | ||
if (UNIX) | ||
target_link_libraries(Lib3MFExample_CPPDynamic ${CMAKE_DL_LIBS}) | ||
endif (UNIX) | ||
target_include_directories(Lib3MFExample_CPPDynamic PRIVATE "D:/PUBLIC/tmp/Lib3MF_component/Documentations/Cpp") | ||
target_include_directories(Lib3MFExample_CPPDynamic PRIVATE "${CMAKE_CURRENT_BINDING_DIR}") |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
set(CMAKE_CURRENT_BINDING_DIR ${CMAKE_CURRENT_SOURCE_DIR}/.) | ||
project(Lib3MFExample_CPPImplicit) | ||
set(CMAKE_CXX_STANDARD 11) | ||
add_executable(Lib3MFExample_CPPImplicit "${CMAKE_CURRENT_SOURCE_DIR}/Lib3MF_example.cpp") | ||
find_library(LIB3MFLOCATION lib3mf "D:/PUBLIC/tmp/Lib3MF_component/Documentations/Cpp/../../Implementations/*/*/*") | ||
find_library(LIB3MFLOCATION lib3mf "D:/PUBLIC/lib3mf_public/AutomaticComponentToolkit/bin/Lib3MF_component/Documentations/Cpp/../../Implementations/*/*/*") | ||
target_link_libraries(Lib3MFExample_CPPImplicit ${LIB3MFLOCATION}) | ||
target_include_directories(Lib3MFExample_CPPImplicit PRIVATE "D:/PUBLIC/tmp/Lib3MF_component/Documentations/Cpp") | ||
target_include_directories(Lib3MFExample_CPPImplicit PRIVATE "${CMAKE_CURRENT_BINDING_DIR}") |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
CMeshObjectIterator | ||
==================================================================================================== | ||
|
||
|
||
.. cpp:class:: Lib3MF::CMeshObjectIterator : public CResourceIterator | ||
|
||
|
||
|
||
|
||
|
||
.. cpp:function:: PMeshObject GetCurrentMeshObject() | ||
|
||
Returns the MeshObject the iterator points at. | ||
|
||
:returns: returns the MeshObject instance. | ||
|
||
|
||
.. cpp:type:: std::shared_ptr<CMeshObjectIterator> Lib3MF::PMeshObjectIterator | ||
|
||
Shared pointer to CMeshObjectIterator to easily allow reference counting. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters