当前位置: 首页>>代码示例>>Python>>正文


Python E.comments方法代码示例

本文整理汇总了Python中collada.E.comments方法的典型用法代码示例。如果您正苦于以下问题:Python E.comments方法的具体用法?Python E.comments怎么用?Python E.comments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在collada.E的用法示例。


在下文中一共展示了E.comments方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from collada import E [as 别名]
# 或者: from collada.E import comments [as 别名]
 def __init__(self, author=None, authoring_tool=None, comments=None, copyright=None, source_data=None, xmlnode=None):
     """Create a new contributor
     
     :param str author:
       The author's name
     :param str authoring_tool:
       Name of the authoring tool
     :param str comments:
       Comments from the contributor
     :param str copyright:
       Copyright information
     :param str source_data:
       URI referencing the source data
     :param xmlnode:
       If loaded from xml, the xml node
     
     """
     self.author = author
     """Contains a string with the author's name."""
     self.authoring_tool = authoring_tool
     """Contains a string with the name of the authoring tool."""
     self.comments = comments
     """Contains a string with comments from this contributor."""
     self.copyright = copyright
     """Contains a string with copyright information."""
     self.source_data = source_data
     """Contains a string with a URI referencing the source data for this asset."""
     
     if xmlnode is not None:
         self.xmlnode = xmlnode
         """ElementTree representation of the contributor."""
     else:
         self.xmlnode = E.contributor()
         if author is not None:
             self.xmlnode.append(E.author(str(author)))
         if authoring_tool is not None:
             self.xmlnode.append(E.authoring_tool(str(authoring_tool)))
         if comments is not None:
             self.xmlnode.append(E.comments(str(comments)))
         if copyright is not None:
             self.xmlnode.append(E.copyright(str(copyright)))
         if source_data is not None:
             self.xmlnode.append(E.source_data(str(source_data)))
开发者ID:feilining,项目名称:pycollada,代码行数:45,代码来源:asset.py


注:本文中的collada.E.comments方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。