rotate2d-1.1.0¶
A 2D rotation.
Description
A 2D rotation around the origin, in degrees. Invertibility: All ASDF tools are required to be able to compute the analytic inverse of this transform.
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
angle
number Required Angle, in degrees.
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/rotate2d-1.1.0"
title: >
A 2D rotation.
description: >
A 2D rotation around the origin, in degrees.
Invertibility: All ASDF tools are required to be able to compute the
analytic inverse of this transform.
allOf:
- $ref: "transform-1.1.0"
- type: object
properties:
angle:
type: number
description: Angle, in degrees.
required: [angle]
...