Add files via upload

This commit is contained in:
Alexander David Frick 2022-07-17 21:47:11 -05:00 committed by GitHub
parent 2444d7a0e2
commit 78fe5256ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 74 additions and 0 deletions

View file

@ -0,0 +1,32 @@
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
CANVAS_DIMENSIONS, 16,
PATH_COLOR_ARGB, 0xFF, 0xE5, 0x1C, 0x23,
MOVE_TO, 8, 1.33f,
CUBIC_TO, 4.31f, 1.33f, 1.33f, 4.31f, 1.33f, 8,
CUBIC_TO, 1.33f, 11.69f, 4.31f, 14.67f, 8, 14.67f,
CUBIC_TO, 11.69f, 14.67f, 14.67f, 11.69f, 14.67f, 8,
CUBIC_TO, 14.67f, 4.31f, 11.69f, 1.33f, 8, 1.33f,
CLOSE,
MOVE_TO, 8, 13.33f,
CUBIC_TO, 5.06f, 13.33f, 2.67f, 10.94f, 2.67f, 8,
CUBIC_TO, 2.67f, 5.06f, 5.06f, 2.67f, 8, 2.67f,
CUBIC_TO, 10.94f, 2.67f, 13.33f, 5.06f, 13.33f, 8,
CUBIC_TO, 13.33f, 10.94f, 10.94f, 13.33f, 8, 13.33f,
CLOSE,
MOVE_TO, 8, 7.06f,
LINE_TO, 10.39f, 4.67f,
LINE_TO, 11.33f, 5.61f,
LINE_TO, 8.94f, 8,
LINE_TO, 11.33f, 10.39f,
LINE_TO, 10.39f, 11.33f,
LINE_TO, 8, 8.94f,
LINE_TO, 5.61f, 11.33f,
LINE_TO, 4.67f, 10.39f,
LINE_TO, 7.06f, 8,
LINE_TO, 4.67f, 5.61f,
LINE_TO, 5.61f, 4.67f,
LINE_TO, 8, 7.06f,
CLOSE

View file

@ -0,0 +1,20 @@
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
CANVAS_DIMENSIONS, 24,
PATH_COLOR_ARGB, 0xFF, 0xE5, 0x1C, 0x23,
MOVE_TO, 12.71f, 12,
R_LINE_TO, 3.89f, -3.89f,
R_LINE_TO, -0.71f, -0.71f,
R_LINE_TO, -3.89f, 3.89f,
R_LINE_TO, -3.89f, -3.89f,
R_LINE_TO, -0.71f, 0.71f,
R_LINE_TO, 3.89f, 3.89f,
R_LINE_TO, -3.89f, 3.89f,
R_LINE_TO, 0.71f, 0.71f,
R_LINE_TO, 3.89f, -3.89f,
R_LINE_TO, 3.89f, 3.89f,
R_LINE_TO, 0.71f, -0.71f,
R_LINE_TO, -3.89f, -3.89f,
CLOSE

View file

@ -0,0 +1,22 @@
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// The close "X" for a tab when not hovered/pressed.
CANVAS_DIMENSIONS, 32,
PATH_COLOR_ARGB, 0xFF, 0xE5, 0x1C, 0x23,
STROKE, 2.45f,
MOVE_TO, 10.25f, 10.25f,
R_LINE_TO, 11.5f, 11.5f,
MOVE_TO, 10.25f, 21.75f,
R_LINE_TO, 11.5f, -11.5f
// The close "X" for a tab when not hovered/pressed, optimized for 1x scale
// factor devices.
CANVAS_DIMENSIONS, 16,
PATH_COLOR_ARGB, 0xFF, 0xE5, 0x1C, 0x23,
STROKE, 1.415f,
MOVE_TO, 4.75f, 4.75f,
R_LINE_TO, 6.5f, 6.5f,
MOVE_TO, 4.75f, 11.25f,
R_LINE_TO, 6.5f, -6.5f