From f936605af55776303ed27701def9482c9a53e527 Mon Sep 17 00:00:00 2001 From: alimhtsai <48788292+alimhtsai@users.noreply.github.com> Date: Mon, 6 May 2024 11:08:24 -0700 Subject: [PATCH] feat(topic): add caption to topic3 circumcenter and orthocenter, modify topic19 franago to fagnano (#258) Add caption of topic3 circumcenter and orthocenter, modify topic19 franago to fagnano --- src/data.ts | 12 ++++++++++-- src/views/topics/GdpTopic03View.vue | 26 ++++++++++++++++++++++++++ src/views/topics/GdpTopic19View.vue | 8 ++++---- 3 files changed, 40 insertions(+), 6 deletions(-) diff --git a/src/data.ts b/src/data.ts index 8d894bf..2d61e9a 100644 --- a/src/data.ts +++ b/src/data.ts @@ -375,6 +375,12 @@ export const MAUREEN_CHANG: Contributor = { institute: Institute.UCIrvine, }; +export const MINGHUA_TSAI: Contributor = { + name: "Minghua Tsai", + email: "minghut1@uci.edu", + institute: Institute.UCIrvine, +}; + export const contributors: Contributor[] = [ ZHIQIN_LU, BRIAN_CABALLERO, @@ -436,7 +442,8 @@ export const contributors: Contributor[] = [ FELIX_YU, MELISSA_YU, KIRA_ZHANG, - MAUREEN_CHANG + MAUREEN_CHANG, + MINGHUA_TSAI ].sort((a, b) => { const aLastName = a.name.split(" ").pop() as string; const bLastName = b.name.split(" ").pop() as string; @@ -518,6 +525,7 @@ export const topics: Topic[] = [ essay: "pdfs/topic03.pdf", animationContributors: [XINXI_GUO, YI_CHEN], essayContributors: [ZHIQIN_LU, SHIYI_LYU], + captionContributors: [MINGHUA_TSAI], }, { name: "Erdős-Mordell Inequality", @@ -654,7 +662,7 @@ export const topics: Topic[] = [ essayContributors: [ZHIFENG_WANG], }, { - name: "Franago Triangle", + name: "Fagnano Triangle", index: 19, snapshot: "images/snapshots/topic19.png", essay: "pdfs/topic19.pdf", diff --git a/src/views/topics/GdpTopic03View.vue b/src/views/topics/GdpTopic03View.vue index 87cae47..5cc0554 100644 --- a/src/views/topics/GdpTopic03View.vue +++ b/src/views/topics/GdpTopic03View.vue @@ -12,6 +12,19 @@ >
+

+ The circumcenter of a triangle is the center of the circumcircle. +

+

+ In the following \triangle ABC, let OD, OE, + and OF be the perpendicular bisectors of three sides + BC, CA, and AB respectively. +

+

+ Click, hold, and move point A, we shall see that + OD, OE, and OF + are always concurrent at O. +

@@ -19,6 +32,19 @@
+

+ The orthocenter of a triangle is the point where all three altitudes of the triangle intersect. +

+

+ In the following \triangle ABC, let AD, BE, + and CF be the heights on BC, CA, and + AB respectively. +

+

+ Click, hold, and move points A, B, and C, + we shall see that AD, BE, and CF are always + concurrent at a point H. +

diff --git a/src/views/topics/GdpTopic19View.vue b/src/views/topics/GdpTopic19View.vue index 2f81d46..a53bbef 100644 --- a/src/views/topics/GdpTopic19View.vue +++ b/src/views/topics/GdpTopic19View.vue @@ -3,9 +3,9 @@ -
- Animated Franago Triangle - +
+ Animated Fagnano Triangle +
@@ -24,7 +24,7 @@ export default defineComponent( return { topic }; }, mounted() { - const canvas = new fabric.Canvas("franago-triangle-canvas", { + const canvas = new fabric.Canvas("fagnano-triangle-canvas", { selection: false, });