npxpy.nodes.structures.Lens
Bases: Structure
A class representing a lens node with specific optical properties.
Attributes:
Name | Type | Description |
---|---|---|
radius |
Union[float, int]
|
The radius of the lens. |
height |
Union[float, int]
|
The height of the lens. |
crop_base |
bool
|
Flag indicating whether the base of the lens should be cropped. |
asymmetric |
bool
|
Flag indicating whether the lens is asymmetric. |
curvature |
Union[float, int]
|
The curvature of the lens. |
conic_constant |
Union[float, int]
|
The conic constant of the lens. |
curvature_y |
Union[float, int]
|
The curvature of the lens in the Y direction (for asymmetric lenses). |
conic_constant_y |
Union[float, int]
|
The conic constant in the Y direction. |
nr_radial_segments |
int
|
The number of radial segments. |
nr_phi_segments |
int
|
The number of phi segments. |
Source code in npxpy/nodes/structures.py
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 |
|
asymmetric
property
writable
Whether the lens is asymmetric.
conic_constant
property
writable
The conic constant of the lens.
conic_constant_y
property
writable
The conic constant in the Y direction.
crop_base
property
writable
Whether the lens base should be cropped.
curvature
property
writable
The curvature of the lens.
curvature_y
property
writable
The curvature of the lens in the Y direction.
height
property
writable
The height of the lens.
nr_phi_segments
property
writable
The number of phi segments for the lens.
nr_radial_segments
property
writable
The number of radial segments for the lens.
polynomial_factors
property
writable
List of polynomial factors.
polynomial_factors_y
property
writable
Polynomial factors for Y axis (if asymmetric).
polynomial_type
property
writable
The type of polynomial ('Normalized' or 'Standard').
radius
property
writable
The radius of the lens.
surface_compensation_factors
property
writable
List of surface compensation factors.
surface_compensation_factors_y
property
writable
Surface compensation factors for Y axis (if asymmetric).
__init__(preset, name='Lens', radius=100.0, height=50.0, crop_base=False, asymmetric=False, curvature=0.01, conic_constant=0.01, curvature_y=0.01, conic_constant_y=-1.0, nr_radial_segments=500, nr_phi_segments=360, slicing_origin='scene_bottom', slicing_offset=0.0, priority=0, expose_individually=False, position=[0.0, 0.0, 0.0], rotation=[0.0, 0.0, 0.0], color='lightblue')
Initialize a Lens node with optical properties.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
preset
|
Preset
|
The preset associated with the lens. |
required |
name
|
str
|
The name of the lens. |
'Lens'
|
radius
|
Union[float, int]
|
The radius of the lens. Must be > 0. |
100.0
|
height
|
Union[float, int]
|
The height of the lens. Must be > 0. |
50.0
|
crop_base
|
bool
|
Whether to crop the base of the lens. |
False
|
asymmetric
|
bool
|
Whether the lens is asymmetric. |
False
|
curvature
|
Union[float, int]
|
The curvature of the lens. |
0.01
|
conic_constant
|
Union[float, int]
|
The conic constant of the lens. |
0.01
|
curvature_y
|
Union[float, int]
|
The curvature in the Y direction (if asymmetric). |
0.01
|
conic_constant_y
|
Union[float, int]
|
The conic constant in the Y direction. |
-1.0
|
nr_radial_segments
|
int
|
The number of radial segments. |
500
|
nr_phi_segments
|
int
|
The number of phi segments. |
360
|
slicing_origin
|
str
|
The slicing origin. |
'scene_bottom'
|
slicing_offset
|
Union[float, int]
|
The slicing offset. |
0.0
|
priority
|
int
|
The priority of the lens. |
0
|
expose_individually
|
bool
|
Whether to expose the lens individually. |
False
|
position
|
List[Union[float, int]]
|
The position of the lens [x, y, z]. |
[0.0, 0.0, 0.0]
|
rotation
|
List[Union[float, int]]
|
The rotation of the lens [psi, theta, phi]. |
[0.0, 0.0, 0.0]
|
Source code in npxpy/nodes/structures.py
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 |
|
auto_load(project)
Load passed presets to passed project if the flags are set.
Source code in npxpy/nodes/structures.py
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 |
|
polynomial(polynomial_type='Normalized', polynomial_factors=[0, 0, 0], polynomial_factors_y=[0, 0, 0])
Set the polynomial factors for the lens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
polynomial_type
|
str
|
The type of polynomial. |
'Normalized'
|
polynomial_factors
|
List[Union[float, int]]
|
List of polynomial factors. |
[0, 0, 0]
|
polynomial_factors_y
|
List[Union[float, int]]
|
Polynomial factors for Y axis (if asymmetric). |
[0, 0, 0]
|
Returns:
Name | Type | Description |
---|---|---|
self |
The updated Lens object. |
Source code in npxpy/nodes/structures.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 |
|
surface_compensation(surface_compensation_factors=[0, 0, 0], surface_compensation_factors_y=[0, 0, 0])
Set the surface compensation factors for the lens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
surface_compensation_factors
|
List[Union[float, int]]
|
Surface compensation factors. |
[0, 0, 0]
|
surface_compensation_factors_y
|
List[Union[float, int]]
|
Surface compensation factors for Y axis (if asymmetric). |
[0, 0, 0]
|
Returns:
Name | Type | Description |
---|---|---|
self |
The updated Lens object. |
Source code in npxpy/nodes/structures.py
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 |
|
to_dict()
Convert the lens to a dictionary representation.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The dictionary representation of the lens. |
Source code in npxpy/nodes/structures.py
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 |
|