diff options
author | Stanley Yip <stanley_yip@brown.edu> | 2019-12-03 18:54:41 -0500 |
---|---|---|
committer | Stanley Yip <stanley_yip@brown.edu> | 2019-12-03 18:54:41 -0500 |
commit | fb9f08295c10c35c11b647d00a3c830867dc3f7d (patch) | |
tree | 76126c5d894fc54a17bcfa901cb23bd93e473d61 /src/client/documents/Documents.ts | |
parent | cb2edb837ffa9df5ad966d44ac0c26622d6579f0 (diff) |
nothing new, infrastructure stuffs
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index c5bf109a1..8c6aa2006 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -422,7 +422,7 @@ export namespace Docs { return InstanceFromProto(Prototypes.get(DocumentType.TEXT), "", options); } - export function InkDocument(color: string, tool: number, strokeWidth: number, points: { x: number, y: number }[], options: DocumentOptions = {}) { + export function InkDocument(color: string, tool: number, strokeWidth: number, points: { X: number, Y: number }[], options: DocumentOptions = {}) { let doc = InstanceFromProto(Prototypes.get(DocumentType.INK), new InkField(points), options); doc.color = color; doc.strokeWidth = strokeWidth; |