Skip to content

Commit

Permalink
ENH: Moving PointSet Vector wrapping to itkPointSet.wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
PranjalSahu authored and dzenanz committed Jun 10, 2022
1 parent 90d0270 commit bf53f05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Modules/Core/Common/wrapping/itkPointSet.wrap
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
itk_wrap_include("itkDefaultStaticMeshTraits.h")
itk_wrap_include("itkDefaultDynamicMeshTraits.h")
itk_wrap_filter_dims(has_d_3 3)

itk_wrap_class("itk::PointSet" POINTER)
UNIQUE(types "${WRAP_ITK_SCALAR};D")
Expand All @@ -20,4 +21,8 @@ itk_wrap_class("itk::PointSet" POINTER)
itk_wrap_template("M${ITKM_D}${d}${d}" "itk::Matrix <${ITKT_D},${d},${d}>,${d}")
itk_wrap_template("A${ITKM_D}${d}" "itk::Array <${ITKT_D}>,${d}")
endforeach()

if(has_d_3)
itk_wrap_template("VF33" "itk::Vector< float, 3 >, 3")
endif()
itk_end_wrap_class()
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,4 @@ if(has_d_3)
itk_wrap_class("itk::BlockMatchingImageFilter" POINTER_WITH_2_SUPERCLASSES)
itk_wrap_image_filter("${WRAP_ITK_REAL}" 1 3)
itk_end_wrap_class()

itk_wrap_class("itk::PointSet" POINTER)
itk_wrap_template("VF33" "itk::Vector< float, 3 >, 3")
itk_end_wrap_class()

endif()

0 comments on commit bf53f05

Please sign in to comment.