File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,7 +106,8 @@ export const DimensionNames = [
106106 "Time" ,
107107 "Mass" ,
108108 "Torque" ,
109- "MoI"
109+ "MoI" ,
110+ "Current"
110111] as const ;
111112export type DimensionName = ( typeof DimensionNames ) [ number ] ;
112113export type Dimension < T > = {
@@ -128,12 +129,6 @@ export const Dimensions = {
128129 unit : Units . Meter ,
129130 icon : ( ) => < Straighten > </ Straighten >
130131 } ,
131- Current : {
132- type : "Current" ,
133- name : "Electric Current" ,
134- unit : Units . Amp ,
135- icon : ( ) => < Straighten > </ Straighten >
136- } ,
137132 Angle : {
138133 type : "Angle" ,
139134 name : "Angle" ,
@@ -187,6 +182,12 @@ export const Dimensions = {
187182 unit : Units . NewtonMeter ,
188183 icon : ( ) => < Torque > </ Torque > ,
189184 type : "Torque"
185+ } ,
186+ Current : {
187+ type : "Current" ,
188+ name : "Electric Current" ,
189+ unit : Units . Amp ,
190+ icon : ( ) => < Straighten > </ Straighten >
190191 }
191192} as const satisfies {
192193 [ key in DimensionName ] : Dimension < key > ;
You can’t perform that action at this time.
0 commit comments