import * as React from 'react'; import { NOTCHES_LENGTH } from '../../../utils/default'; interface IDimensionProps { id: string xStart: number yStart: number xEnd: number yEnd: number text: string strokeWidth: number } /** * 2D Parametric function. Returns a new coordinate from the origin coordinate * See for more details https://en.wikipedia.org/wiki/Parametric_equation. * TL;DR a parametric function is a function with a parameter * @param x0 Origin coordinate * @param t The parameter * @param vx Transform vector * @returns Returns a new coordinate from the origin coordinate */ const applyParametric = (x0: number, t: number, vx: number): number => x0 + t * vx; export const Dimension: React.FC = (props: IDimensionProps) => { const style: React.CSSProperties = { stroke: 'black' }; /// We need to find the points of the notches // Get the vector of the line const [deltaX, deltaY] = [(props.xEnd - props.xStart), (props.yEnd - props.yStart)]; // Get the unit vector const norm = Math.sqrt(deltaX * deltaX + deltaY * deltaY); const [unitX, unitY] = [deltaX / norm, deltaY / norm]; // Get the perpandicular vector const [perpVecX, perpVecY] = [unitY, -unitX]; // Use the parametric function to get the coordinates (x = x0 + t * v.x) const startTopX = applyParametric(props.xStart, NOTCHES_LENGTH, perpVecX); const startTopY = applyParametric(props.yStart, NOTCHES_LENGTH, perpVecY); const startBottomX = applyParametric(props.xStart, -NOTCHES_LENGTH, perpVecX); const startBottomY = applyParametric(props.yStart, -NOTCHES_LENGTH, perpVecY); const endTopX = applyParametric(props.xEnd, NOTCHES_LENGTH, perpVecX); const endTopY = applyParametric(props.yEnd, NOTCHES_LENGTH, perpVecY); const endBottomX = applyParametric(props.xEnd, -NOTCHES_LENGTH, perpVecX); const endBottomY = applyParametric(props.yEnd, -NOTCHES_LENGTH, perpVecY); return ( {props.text} ); };