英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

Axes    音标拼音: ['æksɪz] ['æksiz]
n. 轴,轴线,轴心

轴,轴线,轴心

Axis \Ax"is\, n.; pl. {Axes}. [L. axis axis, axle. See {Axle}.]
A straight line, real or imaginary, passing through a body,
on which it revolves, or may be supposed to revolve; a line
passing through a body or system around which the parts are
symmetrically arranged.
[1913 Webster]

2. (Math.) A straight line with respect to which the
different parts of a magnitude are symmetrically arranged;
as, the axis of a cylinder, i. e., the axis of a cone,
that is, the straight line joining the vertex and the
center of the base; the axis of a circle, any straight
line passing through the center.
[1913 Webster]

3. (Bot.) The stem; the central part, or longitudinal
support, on which organs or parts are arranged; the
central line of any body. --Gray.
[1913 Webster]

4. (Anat.)
(a) The second vertebra of the neck, or {vertebra
dentata}.
(b) Also used of the body only of the vertebra, which is
prolonged anteriorly within the foramen of the first
vertebra or atlas, so as to form the odontoid process
or peg which serves as a pivot for the atlas and head
to turn upon.
[1913 Webster]

5. (Crystallog.) One of several imaginary lines, assumed in
describing the position of the planes by which a crystal
is bounded.
[1913 Webster]

6. (Fine Arts) The primary or secondary central line of any
design.
[1913 Webster]

{Anticlinal axis} (Geol.), a line or ridge from which the
strata slope downward on the two opposite sides.

{Synclinal axis}, a line from which the strata slope upward
in opposite directions, so as to form a valley.

{Axis cylinder} (Anat.), the neuraxis or essential, central
substance of a nerve fiber; -- called also {axis band},
{axial fiber}, and {cylinder axis}.

{Axis in peritrochio}, the wheel and axle, one of the
mechanical powers.

{Axis of a curve} (Geom.), a straight line which bisects a
system of parallel chords of a curve; called a {principal
axis}, when cutting them at right angles, in which case it
divides the curve into two symmetrical portions, as in the
parabola, which has one such axis, the ellipse, which has
two, or the circle, which has an infinite number. The two
axes of the ellipse are the {major axis} and the {minor
axis}, and the two axes of the hyperbola are the
{transverse axis} and the {conjugate axis}.

{Axis of a lens}, the straight line passing through its
center and perpendicular to its surfaces.

{Axis of a microscope} or {Axis of a telescope}, the straight
line with which coincide the axes of the several lenses
which compose it.

{Axes of co["o]rdinates in a plane}, two straight lines
intersecting each other, to which points are referred for
the purpose of determining their relative position: they
are either rectangular or oblique.

{Axes of co["o]rdinates in space}, the three straight lines
in which the co["o]rdinate planes intersect each other.

{Axis of a balance}, that line about which it turns.

{Axis of oscillation}, of a pendulum, a right line passing
through the center about which it vibrates, and
perpendicular to the plane of vibration.

{Axis of polarization}, the central line around which the
prismatic rings or curves are arranged. --Brewster.

{Axis of revolution} (Descriptive Geom.), a straight line
about which some line or plane is revolved, so that the
several points of the line or plane shall describe circles
with their centers in the fixed line, and their planes
perpendicular to it, the line describing a surface of
revolution, and the plane a solid of revolution.

{Axis of symmetry} (Geom.), any line in a plane figure which
divides the figure into two such parts that one part, when
folded over along the axis, shall coincide with the other
part.

{Axis of the} {equator, ecliptic, horizon} (or other circle
considered with reference to the sphere on which it lies),
the diameter of the sphere which is perpendicular to the
plane of the circle. --Hutton.

{Axis of the Ionic capital} (Arch.), a line passing
perpendicularly through the middle of the eye of the
volute.

{Neutral axis} (Mech.), the line of demarcation between the
horizontal elastic forces of tension and compression,
exerted by the fibers in any cross section of a girder.

{Optic axis of a crystal}, the direction in which a ray of
transmitted light suffers no double refraction. All
crystals, not of the isometric system, are either uniaxial
or biaxial.

{Optic axis}, {Visual axis} (Opt.), the straight line passing
through the center of the pupil, and perpendicular to the
surface of the eye.

{Radical axis of two circles} (Geom.), the straight line
perpendicular to the line joining their centers and such
that the tangents from any point of it to the two circles
shall be equal to each other.

{Spiral axis} (Arch.), the axis of a twisted column drawn
spirally in order to trace the circumvolutions without.

{Axis of abscissas} and {Axis of ordinates}. See {Abscissa}.
[1913 Webster]


请选择你想看的字典辞典:
单词字典翻译
axes查看 axes 在百度字典中的解释百度英翻中〔查看〕
axes查看 axes 在Google字典中的解释Google英翻中〔查看〕
axes查看 axes 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • An introduction to widget testing - Flutter
    In the introduction to unit testing recipe, you learned how to test Dart classes using the test package To test widget classes, you need a few additional tools provided by the flutter_test package, which ships with the Flutter SDK The flutter_test package provides the following tools for testing widgets: The WidgetTester allows building and interacting with widgets in a test environment The
  • Testing Flutter apps
    Testing a widget involves multiple classes and requires a test environment that provides the appropriate widget lifecycle context For example, the Widget being tested should be able to receive and respond to user actions and events, perform layout, and instantiate child widgets
  • Tap, drag, and enter text - Flutter
    In the test environment, Flutter doesn't automatically rebuild widgets when the state changes To ensure that the widget tree is rebuilt after simulating a user interaction, call the pump() or pumpAndSettle() methods provided by the WidgetTester This recipe uses the following steps: Create a widget to test Enter text in the text field
  • Check app functionality with an integration test - Flutter
    The integration_test package lets you: Use the flutter drive command to run tests on a physical device or emulator Run on Firebase Test Lab, to automate testing on a variety of devices Use flutter_test APIs to write tests in a style similar to widget tests
  • Handle scrolling - Flutter
    How to handle scrolling in a widget test
  • Find widgets - Flutter
    To locate widgets in a test environment, use the Finder classes While it's possible to write your own Finder classes, it's generally more convenient to locate widgets using the tools provided by the flutter_test package During a flutter run session on a widget test, you can also interactively tap parts of the screen for the Flutter tool to print the suggested Finder This recipe looks at the
  • An introduction to unit testing - Flutter
    The test package provides the core framework for writing unit tests, and the flutter_test package provides additional utilities for testing widgets This recipe demonstrates the core features provided by the test package using the following steps: Add the test or flutter_test dependency Create a test file Create a class to test
  • Testing debugging - Flutter
    Content covering testing and debugging Flutter apps Describes Flutter's build modes and when you should use debug, release, or profile mode
  • Common Flutter errors
    This page explains several frequently-encountered Flutter framework errors (including layout errors) and gives suggestions on how to resolve them This is a living document with more errors to be added in future revisions, and your contributions are welcomed Feel free to open an issue or submit a pull request to make this page more useful to you and the Flutter community
  • Testing each layer - Flutter
    Testing the data layer Similar to the UI layer, the components of the data layer have well-defined inputs and outputs, making both sides fake-able To write unit tests for any given repository, mock the services that it depends on The following example shows a unit test for the BookingRepository





中文字典-英文字典  2005-2009