-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
7 changed files
with
134 additions
and
20 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -163,4 +163,4 @@ GISMO_EXPORT double gsGeometry_closestPointTo(gsCGeometry * fs, | |
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif |
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,19 @@ | ||
|
||
! define gsGeometryTransofrm_print gsFunctionSet_print | ||
! define gsGeometryTransofrm_delete gsFunctionSet_delete | ||
|
||
!------------------------------------------------------------------------------------------------------------ | ||
! GISMO_EXPORT gsCGeometryTransform* gsGeometryTransform_create(gsCBasis * b, gsCMatrix * m, | ||
! gsCVector * v); | ||
|
||
function gsGeometryTransform_create(b, m, v) bind(c,name='gsGeometryTransform_create') | ||
#ifdef _WIN32 | ||
!dir$ attributes stdcall :: gsGeometryTransform_create | ||
#endif | ||
use, intrinsic :: iso_c_binding | ||
implicit none | ||
type(C_PTR) :: gsGeometryTransform_create | ||
type(C_PTR), value :: b, m, v | ||
end function gsGeometryTransform_create | ||
|
||
!------------------------------------------------------------------------------------------------------------ |