Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.21 KB

File metadata and controls

53 lines (43 loc) · 1.21 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex
default-layout
DSLineSegmentsUnit - Dynamsoft Core Module iOS Edition API Reference
The class DSLineSegmentsUnit of Dynamsoft Core Module represents a collection of line segments in 2D space.
line segments, 2D space, objective-c, swift
true
true
true

DSLineSegmentsUnit

The DSLineSegmentsUnit class represents a collection of line segments in 2D space. It is a derived class of DSIntermediateResultUnit.

Definition

Assembly: DynamsoftCore.framework

>- Objective-C >- Swift > >1. ```objc @interface DSLineSegmentsUnit: DSIntermediateResultUnit ``` 2. ```swift class LineSegmentsUnit : IntermediateResultUnit ```

Attributes

Attributes Type Description
lineSegments NSArray<DSLineSegment>* ** An array of DSLineSegment.

lineSegments

An array of DSLineSegment.

>- Objective-C >- Swift > >1. ```objc @property(nonatomic, copy, nullable) NSArray* lineSegments; ``` 2. ```swift var lineSegments: [DSLineSegment]? { get set } ```