OpenCvSharp.NativeMethods.core_Mat_push_back_Vec2s C# (CSharp) Method

core_Mat_push_back_Vec2s() private method

private core_Mat_push_back_Vec2s ( IntPtr self, Vec2s v ) : void
self IntPtr
v Vec2s
return void
        public static extern void core_Mat_push_back_Vec2s(IntPtr self, Vec2s v);
        [DllImport(DllExtern, CallingConvention = CallingConvention.Cdecl)]

Usage Example

コード例 #1
0
ファイル: MatOfT.cs プロジェクト: rajs1006/3D-Unity
 public static void Run(IntPtr ptr, Vec2s v) => NativeMethods.core_Mat_push_back_Vec2s(ptr, v);
NativeMethods