Interface IDrawingPoint
Interface representing a drawing point. It encapsulates a point and an intensity value.
Namespace: PSPDFKit.Api.Geometry
Assembly: Api.dll
Syntax
public interface IDrawingPoint
Properties
| Edit this page View SourceIntensity
An intensity value between 0.0f and 1.0f representing the pressure that was exerted by the touch device.
Declaration
float Intensity { get; init; }
Property Value
| Type | Description |
|---|---|
| float |
X
X co-ordinate of the point.
Declaration
float X { get; init; }
Property Value
| Type | Description |
|---|---|
| float |
Y
Y co-ordinate of the point.
Declaration
float Y { get; init; }
Property Value
| Type | Description |
|---|---|
| float |