[go: nahoru, domu]

blob: d23e268c4f4ae0b8ff4fca16d53c4a377205f542 [file] [log] [blame]
license.botbf09a502008-08-24 00:55:551// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit09911bf2008-07-26 23:55:294
maruel@chromium.org4ae30d082009-02-20 17:55:555#ifndef PRINTING_UNITS_H_
6#define PRINTING_UNITS_H_
initial.commit09911bf2008-07-26 23:55:297
8namespace printing {
9
10// Length of a thousanth of inches in 0.01mm unit.
11const int kHundrethsMMPerInch = 2540;
12
13// Converts from one unit system to another using integer arithmetics.
14int ConvertUnit(int value, int old_unit, int new_unit);
15
16// Converts from one unit system to another using doubles.
17double ConvertUnitDouble(double value, double old_unit, double new_unit);
18
19// Converts from 0.001 inch unit to 0.00001 meter.
20int ConvertMilliInchToHundredThousanthMeter(int milli_inch);
21
22// Converts from 0.00001 meter unit to 0.001 inch.
23int ConvertHundredThousanthMeterToMilliInch(int cmm);
24
25} // namespace printing
26
maruel@chromium.org4ae30d082009-02-20 17:55:5527#endif // PRINTING_UNITS_H_