Loading...
Searching...
No Matches
Point.h
Go to the documentation of this file.
1//---------------------------------------------------------------------------------------
2// Copyright (c) 2001-2025 by Apryse Software Inc. All Rights Reserved.
3// Consult legal.txt regarding legal and license information.
4//---------------------------------------------------------------------------------------
5#ifndef PDFTRON_H_CPPPDFPoint
6#define PDFTRON_H_CPPPDFPoint
7
8namespace pdftron {
9 namespace PDF {
10
11
12class Point: public TRN_Point
13{
14 public:
15 Point() { x=(0); y=(0);}
16 Point(double px,double py) { x=(px); y=(py); }
17};
18
19 } // namespace PDF
20} // namespace pdftron
21
22#endif // PDFTRON_H_CPPPDFPoint
Point(double px, double py)
Definition Point.h:16