Rotate(回転)ノード¶
The Rotate node rotates the input image around its center based on the specified angle.
入力¶
- Image(画像)
標準のカラー入力です。
- Angle(角度)
The amount of rotation. Positive values rotate clockwise and negative ones counterclockwise.
Sampling(サンプリング)¶
- Interpolation(補間)
Determines how pixel values are interpolated when scaling or transforming images.
- Nearest(最も近い):
Uses the value of the closest pixel with no smoothing. This is the fastest method and is well-suited for pixel art or low-resolution images where sharp, blocky edges are desirable. In animations, motion appears in single-pixel steps, which can cause visible jittering.
- Bilinear(バイリニア):
Averages the values of surrounding pixels to create a smoother result than Nearest. Provides a good balance between performance and visual quality.
- Bicubic(バイキューブ):
Computes a weighted average of a larger neighborhood of pixels for even smoother results. Ideal for photographic images or gradients where preserving fine detail is important.
- Anisotropic:
Adjusts interpolation based on the direction and scale of the transformation. Helps reduce blurring or aliasing when scaling at steep angles or uneven resolutions, especially useful in textures viewed at oblique angles or in detailed 3D projections.
- Extension X/Y
The extension mode applied to the X axis.
- Clip(クリップ):
Areas outside of the image are filled with transparency.
- Extend(拡張):
Areas outside of the image are filled with the closest boundary pixel in the image.
- Repeat(リピート):
Areas outside of the image are filled with repetitions of the image.
出力¶
- Image(画像)
標準のカラー出力です。