mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
Merge branch 4.x
This commit is contained in:
@@ -21,7 +21,6 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
/**
|
||||
* Represents a two dimensional point the coordinate values of which are of type `int`
|
||||
*/
|
||||
NS_SWIFT_NAME(Point)
|
||||
CV_EXPORTS @interface Point2i : NSObject
|
||||
|
||||
# pragma mark - Properties
|
||||
|
||||
@@ -22,7 +22,6 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
/**
|
||||
* Represents a rectange the coordinate and dimension values of which are of type `int`
|
||||
*/
|
||||
NS_SWIFT_NAME(Rect)
|
||||
CV_EXPORTS @interface Rect2i : NSObject
|
||||
|
||||
#pragma mark - Properties
|
||||
|
||||
@@ -21,7 +21,6 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
/**
|
||||
* Represents the dimensions of a rectangle the values of which are of type `int`
|
||||
*/
|
||||
NS_SWIFT_NAME(Size)
|
||||
CV_EXPORTS @interface Size2i : NSObject
|
||||
|
||||
#pragma mark - Properties
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Typealiases.swift
|
||||
//
|
||||
// Created by Chris Ballinger on 2020/11/18.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
public typealias Rect = Rect2i
|
||||
public typealias Point = Point2i
|
||||
public typealias Size = Size2i
|
||||
Reference in New Issue
Block a user