Creo Illustrate 설치 및 구성 안내서 > 조명 설정 XML문서 스키마
조명 설정 XML문서 스키마
이 장에서는 Creo Illustrate에서 사용된 조명 설정 XML 문서용 XML 스키마를 보여줍니다.
XML 스키마 정보
아래 나열된 XML 스키마에서는 조명 장면 XML 문서의 다음 특성을 정의합니다.
문서에 나타날 수 있는 요소 및 속성과 해당 데이터 유형 및 값
하위 요소가 있는 요소와 하위 요소의 순서 및 개수
요소가 비어 있는지 또는 텍스트를 포함할 수 있는지 여부
Creo Illustrate에 사용하려는 사용자 정의 조명 장면 XML 파일은 이 스키마를 따라야 합니다.
* 
조명 장면 XML 문서에 대한 자세한 내용은 조명 설정 사용자 정의를 참조하십시오.
XML 스키마 목록
<?xml version="1.0" encoding="utf-16"?>
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="lightscenes">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="unbounded" name="lightscene">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name">
<xsd:complexType>
<xsd:attribute name="locid" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="light">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="color">
<xsd:complexType>
<xsd:attribute name="ambient" type="xsd:string" />
<xsd:attribute name="diffuse" type="xsd:string" />
<xsd:attribute name="specular" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="direction">
<xsd:complexType>
<xsd:attribute name="x" type="xsd:decimal" />
<xsd:attribute name="y" type="xsd:decimal" />
<xsd:attribute name="z" type="xsd:decimal" />
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="relative" type="xsd:string" />
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>

도움이 되셨나요?