Nút Phân Hình Chiếu (Float To Integer Node)
The Float To Integer node takes a single floating point number input and converts it to an integer with a choice of methods.
Đầu Vào (Inputs)
- Float
Standard float value input.
Tính Chất (Properties)
- Chế Độ Làm Tròn Số (Rounding Mode)
- Làm Tròn (Round)
Outputs the closest integer to Float, rounding either up or down based on the value.
- Sàn/Nền Nhà (Floor)
Outputs the closest integer less than Float, always rounding down.
- Trần Nhà/Ceiling/Phép toán làm tròn lên (Ceiling)
Outputs the closest integer greater than Float, always rounding up.
- Cắt Ngắn (Truncate)
Outputs the closest integer between Float and zero. For positive numbers, acts like Floor. For negative numbers, acts as Ceiling.
Đầu Ra (Output)
- Kết Quả (Result)
Đầu ra tiêu chuẩn của hình ảnh.
Một Số Ví Dụ (Examples)
Thêm Biến Số Đầu Vào |
Làm Tròn (Round) |
Sàn/Nền Nhà (Floor) |
Trần Nhà/Ceiling/Phép toán làm tròn lên (Ceiling) |
Cắt Ngắn (Truncate) |
---|---|---|---|---|
-69.6574 |
-70 |
-70 |
-69 |
-69 |
-3.14159 |
-3 |
-4 |
-3 |
-3 |
-1.5 |
-2 |
-2 |
-1 |
-1 |
1.5 |
2 |
1 |
2 |
1 |
3.14159 |
3 |
3 |
4 |
3 |
69.6574 |
70 |
69 |
70 |
69 |