From: yasutomo Date: Fri, 16 Apr 2010 01:35:59 +0000 (+0900) Subject: create vectorx X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c9e817aa0768e194a19f489dc0341513441c2416;p=moflib%2Fmoflib.git create vectorx --- diff --git a/src/Doxyfile b/src/Doxyfile new file mode 100644 index 0000000..1804fe3 --- /dev/null +++ b/src/Doxyfile @@ -0,0 +1,1510 @@ +# Doxyfile 1.5.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = Motif Of Functions LIBrary + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = doc + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, +# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, +# Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, +# Spanish, Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = Japanese + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to FRAME, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. Other possible values +# for this tag are: HIERARCHIES, which will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list; +# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which +# disables this behavior completely. For backwards compatibility with previous +# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE +# respectively. + +GENERATE_TREEVIEW = NONE + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = NO + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = ./moflib/ + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = YES + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = YES + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Options related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff --git a/src/Makefile b/src/Makefile index e88c7cd..96ca9ee 100644 --- a/src/Makefile +++ b/src/Makefile @@ -17,7 +17,11 @@ HEADERS = \ mof/base/mofdef.hpp \ mof/base/tstring.hpp \ mof/util/foreach.hpp \ - mof/math/basic_vector.hpp + mof/math/basic_vector.hpp \ + mof/math/vector2.hpp \ + mof/math/vector3.hpp \ + mof/math/vector4.hpp \ + mof/math/vector.hpp # ¶¦Ä̤ÎMake ¥·¥¹¥Æ¥à¤ò»È¤¦¤Î¤Ç¡¤¤³¤Î¾ì½ê¤Ç¥¤¥ó¥¯¥ë¡¼¥É¤¹¤ë¡¥ diff --git a/src/Makefile.bak b/src/Makefile.bak index e88c7cd..96ca9ee 100644 --- a/src/Makefile.bak +++ b/src/Makefile.bak @@ -17,7 +17,11 @@ HEADERS = \ mof/base/mofdef.hpp \ mof/base/tstring.hpp \ mof/util/foreach.hpp \ - mof/math/basic_vector.hpp + mof/math/basic_vector.hpp \ + mof/math/vector2.hpp \ + mof/math/vector3.hpp \ + mof/math/vector4.hpp \ + mof/math/vector.hpp # ¶¦Ä̤ÎMake ¥·¥¹¥Æ¥à¤ò»È¤¦¤Î¤Ç¡¤¤³¤Î¾ì½ê¤Ç¥¤¥ó¥¯¥ë¡¼¥É¤¹¤ë¡¥ diff --git a/src/doc/html/Vector2D_8cpp.html b/src/doc/html/Vector2D_8cpp.html new file mode 100644 index 0000000..97d5e56 --- /dev/null +++ b/src/doc/html/Vector2D_8cpp.html @@ -0,0 +1,37 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/Vector2D.cpp + + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:02:00 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/Vector2D_8cpp_source.html b/src/doc/html/Vector2D_8cpp_source.html new file mode 100644 index 0000000..1ba6606 --- /dev/null +++ b/src/doc/html/Vector2D_8cpp_source.html @@ -0,0 +1,106 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/Vector2D.cpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:02:00 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/Vector2D_8hpp.html b/src/doc/html/Vector2D_8hpp.html new file mode 100644 index 0000000..44e27db --- /dev/null +++ b/src/doc/html/Vector2D_8hpp.html @@ -0,0 +1,41 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/Vector2D.hpp + + + + + + +
+

mof/math/Vector2D.hpp

+

ソースコードを見る。

+ + + + + +

構成

struct  mof::Vector2D

ネームスペース

namespace  mof
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:02:00 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/Vector2D_8hpp_source.html b/src/doc/html/Vector2D_8hpp_source.html new file mode 100644 index 0000000..94eee3c --- /dev/null +++ b/src/doc/html/Vector2D_8hpp_source.html @@ -0,0 +1,65 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/Vector2D.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:02:00 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/annotated.html b/src/doc/html/annotated.html new file mode 100644 index 0000000..fb8c6de --- /dev/null +++ b/src/doc/html/annotated.html @@ -0,0 +1,41 @@ + + + + +MotifOfFunctionsLIBrary: 構成 + + + + + + +
+

構成

クラス、構造体、共用体、インタフェースの説明です。 + + + + + +
addable
mof::math::basic_vector< Dim, Derived >基底ベクトルテンプレートクラス
mof::math::vector22次元ベクトルクラス
mof::math::vector33次元ベクトルクラス
mof::math::vector44次元ベクトルクラス
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/basic__vector_8hpp.html b/src/doc/html/basic__vector_8hpp.html new file mode 100644 index 0000000..168c60b --- /dev/null +++ b/src/doc/html/basic__vector_8hpp.html @@ -0,0 +1,43 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/basic_vector.hpp + + + + + + +
+

mof/math/basic_vector.hpp

+

ソースコードを見る。

+ + + + + + + +

構成

class  mof::math::basic_vector< Dim, Derived >
 åŸºåº•ãƒ™ã‚¯ãƒˆãƒ«ãƒ†ãƒ³ãƒ—レートクラス [詳細]

ネームスペース

namespace  mof
namespace  mof::math
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/basic__vector_8hpp_source.html b/src/doc/html/basic__vector_8hpp_source.html new file mode 100644 index 0000000..335f5b7 --- /dev/null +++ b/src/doc/html/basic__vector_8hpp_source.html @@ -0,0 +1,158 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/basic_vector.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classboost_1_1addable.html b/src/doc/html/classboost_1_1addable.html new file mode 100644 index 0000000..8a59269 --- /dev/null +++ b/src/doc/html/classboost_1_1addable.html @@ -0,0 +1,46 @@ + + + + +MotifOfFunctionsLIBrary: クラス addable + + + + + + +
+

クラス addable

+addableに対する継承グラフ
+
+
Inheritance graph
+ + +
[凡例]
+ +
+
このクラスの説明は次のファイルから生成されました: +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classboost_1_1addable__inherit__graph.map b/src/doc/html/classboost_1_1addable__inherit__graph.map new file mode 100644 index 0000000..2b9ae95 --- /dev/null +++ b/src/doc/html/classboost_1_1addable__inherit__graph.map @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/doc/html/classboost_1_1addable__inherit__graph.md5 b/src/doc/html/classboost_1_1addable__inherit__graph.md5 new file mode 100644 index 0000000..8fb6fe2 --- /dev/null +++ b/src/doc/html/classboost_1_1addable__inherit__graph.md5 @@ -0,0 +1 @@ +59279b6373f72cbcee08184c792e8b1a \ No newline at end of file diff --git a/src/doc/html/classboost_1_1addable__inherit__graph.png b/src/doc/html/classboost_1_1addable__inherit__graph.png new file mode 100644 index 0000000..8d62615 Binary files /dev/null and b/src/doc/html/classboost_1_1addable__inherit__graph.png differ diff --git a/src/doc/html/classboost_1_1operators.html b/src/doc/html/classboost_1_1operators.html new file mode 100644 index 0000000..4f00cee --- /dev/null +++ b/src/doc/html/classboost_1_1operators.html @@ -0,0 +1,46 @@ + + + + +std::vector代替案: クラス operators + + + + + + +
+

クラス operators

+operatorsに対する継承グラフ
+
+
Inheritance graph
+ + +
[凡例]
+ +
+
このクラスの説明は次のファイルから生成されました: +
+
std::vector代替案に対してFri Apr 16 07:44:01 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classboost_1_1operators__inherit__graph.map b/src/doc/html/classboost_1_1operators__inherit__graph.map new file mode 100644 index 0000000..1c7be7a --- /dev/null +++ b/src/doc/html/classboost_1_1operators__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/src/doc/html/classboost_1_1operators__inherit__graph.md5 b/src/doc/html/classboost_1_1operators__inherit__graph.md5 new file mode 100644 index 0000000..7d34933 --- /dev/null +++ b/src/doc/html/classboost_1_1operators__inherit__graph.md5 @@ -0,0 +1 @@ +4d207491e46f7d7ce6b985c6e63bf055 \ No newline at end of file diff --git a/src/doc/html/classboost_1_1operators__inherit__graph.png b/src/doc/html/classboost_1_1operators__inherit__graph.png new file mode 100644 index 0000000..a70f3a6 Binary files /dev/null and b/src/doc/html/classboost_1_1operators__inherit__graph.png differ diff --git a/src/doc/html/classes.html b/src/doc/html/classes.html new file mode 100644 index 0000000..f015486 --- /dev/null +++ b/src/doc/html/classes.html @@ -0,0 +1,40 @@ + + + + +MotifOfFunctionsLIBrary: アルファベット順一覧 + + + + + + +
+

構成索引

A | B | V
+ +
  A  
+
  B  
+
  V  
+
vector3 (mof::math)   vector4 (mof::math)   
boost::addable   basic_vector (mof::math)   vector2 (mof::math)   
A | B | V
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1basic__vector-members.html b/src/doc/html/classmof_1_1math_1_1basic__vector-members.html new file mode 100644 index 0000000..b4142be --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1basic__vector-members.html @@ -0,0 +1,50 @@ + + + + +MotifOfFunctionsLIBrary: メンバ一覧 + + + + + + +
+

mof::math::basic_vector< Dim, Derived > メンバ一覧

これは全メンバの一覧です。mof::math::basic_vector< Dim, Derived >継承メンバも含んでいます。 + + + + + + + + + + + + + + + +
components_mof::math::basic_vector< Dim, Derived > [private]
operator*(real rhs1, Derived &rhs2)mof::math::basic_vector< Dim, Derived > [friend]
operator*=(real rhs)mof::math::basic_vector< Dim, Derived > [inline]
operator+(real rhs1, Derived &rhs2)mof::math::basic_vector< Dim, Derived > [friend]
operator+=(const Derived &rhs)mof::math::basic_vector< Dim, Derived > [inline]
operator+=(real rhs)mof::math::basic_vector< Dim, Derived > [inline]
operator-(real rhs1, Derived &rhs2)mof::math::basic_vector< Dim, Derived > [friend]
operator-=(const Derived &rhs)mof::math::basic_vector< Dim, Derived > [inline]
operator-=(real rhs)mof::math::basic_vector< Dim, Derived > [inline]
operator/(real rhs1, Derived &rhs2)mof::math::basic_vector< Dim, Derived > [friend]
operator/=(real rhs)mof::math::basic_vector< Dim, Derived > [inline]
operator<<(std::ostream &stream, const Derived &rhs)mof::math::basic_vector< Dim, Derived > [friend]
operator==(const Derived &rhs) const mof::math::basic_vector< Dim, Derived > [inline]
operator[](size_t index)mof::math::basic_vector< Dim, Derived > [inline]
operator[](size_t index) const mof::math::basic_vector< Dim, Derived > [inline]
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1basic__vector.html b/src/doc/html/classmof_1_1math_1_1basic__vector.html new file mode 100644 index 0000000..f667ea7 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1basic__vector.html @@ -0,0 +1,488 @@ + + + + +MotifOfFunctionsLIBrary: クラス テンプレート mof::math::basic_vector< Dim, Derived > + + + + + + +
+

クラス テンプレート mof::math::basic_vector< Dim, Derived >

+

基底ベクトルテンプレートクラス +[詳細]

+ +

#include <basic_vector.hpp>

+ +

すべてのメンバ一覧

+ + + + + + + + + + + + + + + + + + + + + + + +

Public メソッド

Derived & operator+= (const Derived &rhs)
Derived & operator+= (real rhs)
Derived & operator-= (const Derived &rhs)
Derived & operator-= (real rhs)
Derived & operator*= (real rhs)
Derived & operator/= (real rhs)
realoperator[] (size_t index)
 æ·»å­—による要素へのアクセス
const realoperator[] (size_t index) const
 æ·»å­—による要素へのアクセス(const版)
bool operator== (const Derived &rhs) const

Private 変数

real components_ [Dim]
 è¦ç´ ã®é…åˆ—

フレンド

Derived operator+ (real rhs1, Derived &rhs2)
Derived operator- (real rhs1, Derived &rhs2)
Derived operator* (real rhs1, Derived &rhs2)
Derived operator/ (real rhs1, Derived &rhs2)
std::ostream & operator<< (std::ostream &stream, const Derived &rhs)
 ãƒ‡ãƒãƒƒã‚°å‡ºåŠ›ç”¨ã‚¹ãƒˆãƒªãƒ¼ãƒ æ¼”算子
+

説明

+

template<size_t Dim, typename Derived>
+ class mof::math::basic_vector< Dim, Derived >

+ +

基底ベクトルテンプレートクラス

+
覚え書き:
このテンプレートから直接特殊化することは想定していない.あくまでvectorxを実装 するための補助テンプレートである.
+
Template Parameters:
+ + + +
Dim ãƒ™ã‚¯ãƒˆãƒ«ã®æ¬¡å…ƒ(要素数)
Derived ç‰¹æ®ŠåŒ–されたテンプレートの派生クラス(vectorx)の型
+
+
+ +

basic_vector.hpp の 18 行で定義されています。

+

関数

+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
Derived& mof::math::basic_vector< Dim, Derived >::operator*= (real  rhs )  [inline]
+
+
+ +

basic_vector.hpp の 73 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
Derived& mof::math::basic_vector< Dim, Derived >::operator+= (real  rhs )  [inline]
+
+
+ +

basic_vector.hpp の 39 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
Derived& mof::math::basic_vector< Dim, Derived >::operator+= (const Derived &  rhs )  [inline]
+
+
+ +

basic_vector.hpp の 33 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
Derived& mof::math::basic_vector< Dim, Derived >::operator-= (real  rhs )  [inline]
+
+
+ +

basic_vector.hpp の 59 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
Derived& mof::math::basic_vector< Dim, Derived >::operator-= (const Derived &  rhs )  [inline]
+
+
+ +

basic_vector.hpp の 53 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
Derived& mof::math::basic_vector< Dim, Derived >::operator/= (real  rhs )  [inline]
+
+
+ +

basic_vector.hpp の 87 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
bool mof::math::basic_vector< Dim, Derived >::operator== (const Derived &  rhs )  const [inline]
+
+
+ +

basic_vector.hpp の 116 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
const real& mof::math::basic_vector< Dim, Derived >::operator[] (size_t  index )  const [inline]
+
+
+ +

添字による要素へのアクセス(const版)

+
引数:
+ + +
[in] index æ·»å­—.最大値はDim-1
+
+
+
戻り値:
引数で指定した要素の参照
+ +

basic_vector.hpp の 113 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + +
real& mof::math::basic_vector< Dim, Derived >::operator[] (size_t  index )  [inline]
+
+
+ +

添字による要素へのアクセス

+
引数:
+ + +
[in] index æ·»å­—.最大値はDim-1
+
+
+
戻り値:
引数で指定した要素の参照
+ +

basic_vector.hpp の 106 行で定義されています。

+ +
+
+

フレンドと関連する関数

+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + + + + + + + + + + +
Derived operator* (real  rhs1,
Derived &  rhs2 
) [friend]
+
+
+ +

basic_vector.hpp の 79 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + + + + + + + + + + +
Derived operator+ (real  rhs1,
Derived &  rhs2 
) [friend]
+
+
+ +

basic_vector.hpp の 45 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + + + + + + + + + + +
Derived operator- (real  rhs1,
Derived &  rhs2 
) [friend]
+
+
+ +

basic_vector.hpp の 65 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + + + + + + + + + + +
Derived operator/ (real  rhs1,
Derived &  rhs2 
) [friend]
+
+
+ +

basic_vector.hpp の 93 行で定義されています。

+ +
+
+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + + + + + + + + + + + + + + + +
std::ostream& operator<< (std::ostream &  stream,
const Derived &  rhs 
) [friend]
+
+
+ +

デバッグ出力用ストリーム演算子

+
引数:
+ + + +
[in] stream å‡ºåŠ›ã‚¹ãƒˆãƒªãƒ¼ãƒ 
[in] rhs å‡ºåŠ›å¯¾è±¡ã¨ãªã‚‹ãƒ™ã‚¯ãƒˆãƒ«ã‚ªãƒ–ジェクト
+
+
+
戻り値:
引数で与えられた出力ストリーム
+ +

basic_vector.hpp の 133 行で定義されています。

+ +
+
+

変数

+ +
+
+
+template<size_t Dim, typename Derived>
+ + + + +
real mof::math::basic_vector< Dim, Derived >::components_[Dim] [private]
+
+
+ +

要素の配列

+ +

basic_vector.hpp の 28 行で定義されています。

+ +
+
+
このクラスの説明は次のファイルから生成されました: +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1vector2-members.html b/src/doc/html/classmof_1_1math_1_1vector2-members.html new file mode 100644 index 0000000..5750357 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector2-members.html @@ -0,0 +1,55 @@ + + + + +MotifOfFunctionsLIBrary: メンバ一覧 + + + + + + +
+

mof::math::vector2 メンバ一覧

これは全メンバの一覧です。mof::math::vector2継承メンバも含んでいます。 + + + + + + + + + + + + + + + + + + + + +
operator*(real rhs1, vector2 &rhs2)mof::math::basic_vector< 2, vector2 > [friend]
operator*=(real rhs)mof::math::basic_vector< 2, vector2 > [inline]
operator+(real rhs1, vector2 &rhs2)mof::math::basic_vector< 2, vector2 > [friend]
operator+=(const vector2 &rhs)mof::math::basic_vector< 2, vector2 > [inline]
operator+=(real rhs)mof::math::basic_vector< 2, vector2 > [inline]
operator-(real rhs1, vector2 &rhs2)mof::math::basic_vector< 2, vector2 > [friend]
operator-=(const vector2 &rhs)mof::math::basic_vector< 2, vector2 > [inline]
operator-=(real rhs)mof::math::basic_vector< 2, vector2 > [inline]
operator/(real rhs1, vector2 &rhs2)mof::math::basic_vector< 2, vector2 > [friend]
operator/=(real rhs)mof::math::basic_vector< 2, vector2 > [inline]
operator<<(std::ostream &stream, const vector2 &rhs)mof::math::basic_vector< 2, vector2 > [friend]
operator==(const vector2 &rhs) constmof::math::basic_vector< 2, vector2 > [inline]
operator[](size_t index)mof::math::basic_vector< 2, vector2 > [inline]
operator[](size_t index) constmof::math::basic_vector< 2, vector2 > [inline]
vector2()mof::math::vector2 [inline]
vector2(real x, real y)mof::math::vector2 [inline]
x()mof::math::vector2 [inline]
x() const mof::math::vector2 [inline]
y()mof::math::vector2 [inline]
y() const mof::math::vector2 [inline]
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1vector2.html b/src/doc/html/classmof_1_1math_1_1vector2.html new file mode 100644 index 0000000..54a6693 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector2.html @@ -0,0 +1,212 @@ + + + + +MotifOfFunctionsLIBrary: クラス mof::math::vector2 + + + + + + +
+

クラス mof::math::vector2

+

2次元ベクトルクラス +[詳細]

+ +

#include <vector2.hpp>

+
+mof::math::vector2に対する継承グラフ
+
+
Inheritance graph
+ + +
[凡例]
+
+mof::math::vector2のコラボレーション図
+
+
Collaboration graph
+ + +
[凡例]
+ +

すべてのメンバ一覧

+ + + + + + + + + + +

Public メソッド

 vector2 ()
 ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿ï¼Žå…¨ã¦ã®è¦ç´ ã‚’0で初期化する.
 vector2 (real x, real y)
 æŒ‡å®šã—た値で初期化する.
realx ()
const realx () const
realy ()
const realy () const
+

説明

+

2次元ベクトルクラス

+ +

vector2.hpp の 11 行で定義されています。

+

コンストラクタとデストラクタ

+ +
+
+ + + + + + + + +
mof::math::vector2::vector2 ( )  [inline]
+
+
+ +

デフォルトコンストラクタ.全ての要素を0で初期化する.

+ +

vector2.hpp の 18 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
mof::math::vector2::vector2 (real  x,
real  y 
) [inline]
+
+
+ +

指定した値で初期化する.

+
引数:
+ + + +
[in] x x座標成分
[in] y y座標成分
+
+
+ +

vector2.hpp の 29 行で定義されています。

+ +
+
+

関数

+ +
+
+ + + + + + + + +
const real& mof::math::vector2::x ( )  const [inline]
+
+
+ +

vector2.hpp の 37 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector2::x ( )  [inline]
+
+
+ +

vector2.hpp の 36 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
const real& mof::math::vector2::y ( )  const [inline]
+
+
+ +

vector2.hpp の 40 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector2::y ( )  [inline]
+
+
+ +

vector2.hpp の 39 行で定義されています。

+ +
+
+
このクラスの説明は次のファイルから生成されました: +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.map b/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.map new file mode 100644 index 0000000..99c40fb --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.md5 b/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.md5 new file mode 100644 index 0000000..57757e5 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.md5 @@ -0,0 +1 @@ +d71331f73ef838efb08795ed69e2e425 \ No newline at end of file diff --git a/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.png b/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.png new file mode 100644 index 0000000..ff00c8b Binary files /dev/null and b/src/doc/html/classmof_1_1math_1_1vector2__coll__graph.png differ diff --git a/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.map b/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.map new file mode 100644 index 0000000..99c40fb --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.md5 b/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.md5 new file mode 100644 index 0000000..57757e5 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.md5 @@ -0,0 +1 @@ +d71331f73ef838efb08795ed69e2e425 \ No newline at end of file diff --git a/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.png b/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.png new file mode 100644 index 0000000..ff00c8b Binary files /dev/null and b/src/doc/html/classmof_1_1math_1_1vector2__inherit__graph.png differ diff --git a/src/doc/html/classmof_1_1math_1_1vector3-members.html b/src/doc/html/classmof_1_1math_1_1vector3-members.html new file mode 100644 index 0000000..3aad8ab --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector3-members.html @@ -0,0 +1,58 @@ + + + + +MotifOfFunctionsLIBrary: メンバ一覧 + + + + + + +
+

mof::math::vector3 メンバ一覧

これは全メンバの一覧です。mof::math::vector3継承メンバも含んでいます。 + + + + + + + + + + + + + + + + + + + + + + + +
operator*(real rhs1, vector3 &rhs2)mof::math::basic_vector< 3, vector3 > [friend]
operator*=(real rhs)mof::math::basic_vector< 3, vector3 > [inline]
operator+(real rhs1, vector3 &rhs2)mof::math::basic_vector< 3, vector3 > [friend]
operator+=(const vector3 &rhs)mof::math::basic_vector< 3, vector3 > [inline]
operator+=(real rhs)mof::math::basic_vector< 3, vector3 > [inline]
operator-(real rhs1, vector3 &rhs2)mof::math::basic_vector< 3, vector3 > [friend]
operator-=(const vector3 &rhs)mof::math::basic_vector< 3, vector3 > [inline]
operator-=(real rhs)mof::math::basic_vector< 3, vector3 > [inline]
operator/(real rhs1, vector3 &rhs2)mof::math::basic_vector< 3, vector3 > [friend]
operator/=(real rhs)mof::math::basic_vector< 3, vector3 > [inline]
operator<<(std::ostream &stream, const vector3 &rhs)mof::math::basic_vector< 3, vector3 > [friend]
operator==(const vector3 &rhs) constmof::math::basic_vector< 3, vector3 > [inline]
operator[](size_t index)mof::math::basic_vector< 3, vector3 > [inline]
operator[](size_t index) constmof::math::basic_vector< 3, vector3 > [inline]
vector3()mof::math::vector3 [inline]
vector3(real x, real y, real z)mof::math::vector3 [inline]
vector3(const vector2 &xy, real z=1)mof::math::vector3 [inline]
x()mof::math::vector3 [inline]
x() const mof::math::vector3 [inline]
y()mof::math::vector3 [inline]
y() const mof::math::vector3 [inline]
z()mof::math::vector3 [inline]
z() const mof::math::vector3 [inline]
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1vector3.html b/src/doc/html/classmof_1_1math_1_1vector3.html new file mode 100644 index 0000000..4e3ab94 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector3.html @@ -0,0 +1,299 @@ + + + + +MotifOfFunctionsLIBrary: クラス mof::math::vector3 + + + + + + +
+

クラス mof::math::vector3

+

3次元ベクトルクラス +[詳細]

+ +

#include <vector3.hpp>

+
+mof::math::vector3に対する継承グラフ
+
+
Inheritance graph
+ + +
[凡例]
+
+mof::math::vector3のコラボレーション図
+
+
Collaboration graph
+ + +
[凡例]
+ +

すべてのメンバ一覧

+ + + + + + + + + + + + + + +

Public メソッド

 vector3 ()
 ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿ï¼Žå…¨ã¦ã®è¦ç´ ã‚’0で初期化する.
 vector3 (real x, real y, real z)
 æŒ‡å®šã—た値で初期化する.
 vector3 (const vector2 &xy, real z=1)
 æŒ‡å®šã—た値で初期化する.
realx ()
const realx () const
realy ()
const realy () const
realz ()
const realz () const
+

説明

+

3次元ベクトルクラス

+ +

vector3.hpp の 12 行で定義されています。

+

コンストラクタとデストラクタ

+ +
+
+ + + + + + + + +
mof::math::vector3::vector3 ( )  [inline]
+
+
+ +

デフォルトコンストラクタ.全ての要素を0で初期化する.

+ +

vector3.hpp の 19 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
mof::math::vector3::vector3 (real  x,
real  y,
real  z 
) [inline]
+
+
+ +

指定した値で初期化する.

+
引数:
+ + + + +
[in] x x座標成分
[in] y y座標成分
[in] z z座標成分
+
+
+ +

vector3.hpp の 32 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
mof::math::vector3::vector3 (const vector2 xy,
real  z = 1 
) [inline]
+
+
+ +

指定した値で初期化する.

+
引数:
+ + + +
[in] xy 2次元ベクトル
[in] z z座標成分
+
+
+ +

vector3.hpp の 44 行で定義されています。

+ +
+
+

関数

+ +
+
+ + + + + + + + +
const real& mof::math::vector3::x ( )  const [inline]
+
+
+ +

vector3.hpp の 53 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector3::x ( )  [inline]
+
+
+ +

vector3.hpp の 52 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
const real& mof::math::vector3::y ( )  const [inline]
+
+
+ +

vector3.hpp の 56 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector3::y ( )  [inline]
+
+
+ +

vector3.hpp の 55 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
const real& mof::math::vector3::z ( )  const [inline]
+
+
+ +

vector3.hpp の 59 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector3::z ( )  [inline]
+
+
+ +

vector3.hpp の 58 行で定義されています。

+ +
+
+
このクラスの説明は次のファイルから生成されました: +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.map b/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.map new file mode 100644 index 0000000..39111f0 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.md5 b/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.md5 new file mode 100644 index 0000000..d353a00 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.md5 @@ -0,0 +1 @@ +8c16b0b8935a0f3e2a8d53c246f735c4 \ No newline at end of file diff --git a/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.png b/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.png new file mode 100644 index 0000000..0f9200b Binary files /dev/null and b/src/doc/html/classmof_1_1math_1_1vector3__coll__graph.png differ diff --git a/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.map b/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.map new file mode 100644 index 0000000..39111f0 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.md5 b/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.md5 new file mode 100644 index 0000000..d353a00 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.md5 @@ -0,0 +1 @@ +8c16b0b8935a0f3e2a8d53c246f735c4 \ No newline at end of file diff --git a/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.png b/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.png new file mode 100644 index 0000000..0f9200b Binary files /dev/null and b/src/doc/html/classmof_1_1math_1_1vector3__inherit__graph.png differ diff --git a/src/doc/html/classmof_1_1math_1_1vector4-members.html b/src/doc/html/classmof_1_1math_1_1vector4-members.html new file mode 100644 index 0000000..8135c1f --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector4-members.html @@ -0,0 +1,60 @@ + + + + +MotifOfFunctionsLIBrary: メンバ一覧 + + + + + + +
+

mof::math::vector4 メンバ一覧

これは全メンバの一覧です。mof::math::vector4継承メンバも含んでいます。 + + + + + + + + + + + + + + + + + + + + + + + + + +
operator*(real rhs1, vector4 &rhs2)mof::math::basic_vector< 4, vector4 > [friend]
operator*=(real rhs)mof::math::basic_vector< 4, vector4 > [inline]
operator+(real rhs1, vector4 &rhs2)mof::math::basic_vector< 4, vector4 > [friend]
operator+=(const vector4 &rhs)mof::math::basic_vector< 4, vector4 > [inline]
operator+=(real rhs)mof::math::basic_vector< 4, vector4 > [inline]
operator-(real rhs1, vector4 &rhs2)mof::math::basic_vector< 4, vector4 > [friend]
operator-=(const vector4 &rhs)mof::math::basic_vector< 4, vector4 > [inline]
operator-=(real rhs)mof::math::basic_vector< 4, vector4 > [inline]
operator/(real rhs1, vector4 &rhs2)mof::math::basic_vector< 4, vector4 > [friend]
operator/=(real rhs)mof::math::basic_vector< 4, vector4 > [inline]
operator<<(std::ostream &stream, const vector4 &rhs)mof::math::basic_vector< 4, vector4 > [friend]
operator==(const vector4 &rhs) constmof::math::basic_vector< 4, vector4 > [inline]
operator[](size_t index)mof::math::basic_vector< 4, vector4 > [inline]
operator[](size_t index) constmof::math::basic_vector< 4, vector4 > [inline]
vector3(real x, real y, real z, real w)mof::math::vector4 [inline]
vector3(const vector3 &xyz, real w=1)mof::math::vector4 [inline]
vector4()mof::math::vector4 [inline]
w()mof::math::vector4 [inline]
w() const mof::math::vector4 [inline]
x()mof::math::vector4 [inline]
x() const mof::math::vector4 [inline]
y()mof::math::vector4 [inline]
y() const mof::math::vector4 [inline]
z()mof::math::vector4 [inline]
z() const mof::math::vector4 [inline]
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1vector4.html b/src/doc/html/classmof_1_1math_1_1vector4.html new file mode 100644 index 0000000..619d6c5 --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector4.html @@ -0,0 +1,346 @@ + + + + +MotifOfFunctionsLIBrary: クラス mof::math::vector4 + + + + + + +
+

クラス mof::math::vector4

+

4次元ベクトルクラス +[詳細]

+ +

#include <vector4.hpp>

+
+mof::math::vector4に対する継承グラフ
+
+
Inheritance graph
+ + +
[凡例]
+
+mof::math::vector4のコラボレーション図
+
+
Collaboration graph
+ + +
[凡例]
+ +

すべてのメンバ一覧

+ + + + + + + + + + + + + + + + +

Public メソッド

 vector4 ()
 ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚³ãƒ³ã‚¹ãƒˆãƒ©ã‚¯ã‚¿ï¼Žå…¨ã¦ã®è¦ç´ ã‚’0で初期化する.
 vector3 (real x, real y, real z, real w)
 æŒ‡å®šã—た値で初期化する.
 vector3 (const vector3 &xyz, real w=1)
 æŒ‡å®šã—た値で初期化する.
realx ()
const realx () const
realy ()
const realy () const
realz ()
const realz () const
realw ()
const realw () const
+

説明

+

4次元ベクトルクラス

+ +

vector4.hpp の 12 行で定義されています。

+

コンストラクタとデストラクタ

+ +
+
+ + + + + + + + +
mof::math::vector4::vector4 ( )  [inline]
+
+
+ +

デフォルトコンストラクタ.全ての要素を0で初期化する.

+ +

vector4.hpp の 19 行で定義されています。

+ +
+
+

関数

+ +
+
+ + + + + + + + + + + + + + + + + + +
mof::math::vector4::vector3 (const vector3 xyz,
real  w = 1 
) [inline]
+
+
+ +

指定した値で初期化する.

+
引数:
+ + + +
[in] xyz 3次元ベクトル
[in] w w座標成分
+
+
+ +

vector4.hpp の 47 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
mof::math::vector4::vector3 (real  x,
real  y,
real  z,
real  w 
) [inline]
+
+
+ +

指定した値で初期化する.

+
引数:
+ + + + + +
[in] x x座標成分
[in] y y座標成分
[in] z z座標成分
[in] w w座標成分
+
+
+ +

vector4.hpp の 34 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
const real& mof::math::vector4::w ( )  const [inline]
+
+
+ +

vector4.hpp の 66 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector4::w ( )  [inline]
+
+
+ +

vector4.hpp の 65 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
const real& mof::math::vector4::x ( )  const [inline]
+
+
+ +

vector4.hpp の 57 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector4::x ( )  [inline]
+
+
+ +

vector4.hpp の 56 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
const real& mof::math::vector4::y ( )  const [inline]
+
+
+ +

vector4.hpp の 60 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector4::y ( )  [inline]
+
+
+ +

vector4.hpp の 59 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
const real& mof::math::vector4::z ( )  const [inline]
+
+
+ +

vector4.hpp の 63 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
real& mof::math::vector4::z ( )  [inline]
+
+
+ +

vector4.hpp の 62 行で定義されています。

+ +
+
+
このクラスの説明は次のファイルから生成されました: +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.map b/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.map new file mode 100644 index 0000000..4a5096a --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.md5 b/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.md5 new file mode 100644 index 0000000..b5821be --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.md5 @@ -0,0 +1 @@ +17ca3f0d005fca534bb97a19024e0838 \ No newline at end of file diff --git a/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.png b/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.png new file mode 100644 index 0000000..2084e7d Binary files /dev/null and b/src/doc/html/classmof_1_1math_1_1vector4__coll__graph.png differ diff --git a/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.map b/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.map new file mode 100644 index 0000000..4a5096a --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.md5 b/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.md5 new file mode 100644 index 0000000..b5821be --- /dev/null +++ b/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.md5 @@ -0,0 +1 @@ +17ca3f0d005fca534bb97a19024e0838 \ No newline at end of file diff --git a/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.png b/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.png new file mode 100644 index 0000000..2084e7d Binary files /dev/null and b/src/doc/html/classmof_1_1math_1_1vector4__inherit__graph.png differ diff --git a/src/doc/html/doxygen.css b/src/doc/html/doxygen.css new file mode 100644 index 0000000..9ca3caf --- /dev/null +++ b/src/doc/html/doxygen.css @@ -0,0 +1,498 @@ +/* The standard CSS for doxygen */ + +body, table, div, p, dl { + font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif; + font-size: 12px; +} + +/* @group Heading Levels */ + +h1 { + text-align: center; + font-size: 150%; +} + +h2 { + font-size: 120%; +} + +h3 { + font-size: 100%; +} + +dt { + font-weight: bold; +} + +div.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #e8eef2; + border: 1px solid #84b0c7; + text-align: center; + margin: 2px; + padding: 2px; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #153788; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #1b77c5; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #6666cc; + color: #ffffff; + border: 1px double #9295C2; +} + +.contents a.qindexHL:visited { + color: #ffffff; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code { +} + +a.codeRef { +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +.fragment { + font-family: monospace, fixed; + font-size: 105%; +} + +pre.fragment { + border: 1px solid #CCCCCC; + background-color: #f5f5f5; + padding: 4px 6px; + margin: 4px 8px 4px 2px; +} + +div.ah { + background-color: black; + font-weight: bold; + color: #ffffff; + margin-bottom: 3px; + margin-top: 3px +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + margin-bottom: 6px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background: white; + color: black; + margin-right: 20px; + margin-left: 20px; +} + +td.indexkey { + background-color: #e8eef2; + font-weight: bold; + border: 1px solid #CCCCCC; + margin: 2px 0px 2px 0; + padding: 2px 10px; +} + +td.indexvalue { + background-color: #e8eef2; + border: 1px solid #CCCCCC; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #f0f0f0; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +/* @end */ + +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #84b0c7; +} + +th.dirtab { + background: #e8eef2; + font-weight: bold; +} + +hr { + height: 0; + border: none; + border-top: 1px solid #666; +} + +/* @group Member Descriptions */ + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #FAFAFA; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memItemLeft, .memItemRight, .memTemplParams { + border-top: 1px solid #ccc; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memTemplParams { + color: #606060; + white-space: nowrap; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtemplate { + font-size: 80%; + color: #606060; + font-weight: normal; + margin-left: 3px; +} + +.memnav { + background-color: #e8eef2; + border: 1px solid #84b0c7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.memitem { + padding: 0; + margin-bottom: 10px; +} + +.memname { + white-space: nowrap; + font-weight: bold; +} + +.memproto, .memdoc { + border: 1px solid #84b0c7; +} + +.memproto { + padding: 0; + background-color: #d5e1e8; + font-weight: bold; + -webkit-border-top-left-radius: 8px; + -webkit-border-top-right-radius: 8px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -moz-border-radius-topleft: 8px; + -moz-border-radius-topright: 8px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + +} + +.memdoc { + padding: 2px 5px; + background-color: #eef3f5; + border-top-width: 0; + -webkit-border-bottom-left-radius: 8px; + -webkit-border-bottom-right-radius: 8px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -moz-border-radius-bottomleft: 8px; + -moz-border-radius-bottomright: 8px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} + +/* @end */ + +/* @group Directory (tree) */ + +/* for the tree view */ + +.ftvtree { + font-family: sans-serif; + margin: 0.5em; +} + +/* these are for tree view when used as main index */ + +.directory { + font-size: 9pt; + font-weight: bold; +} + +.directory h3 { + margin: 0px; + margin-top: 1em; + font-size: 11pt; +} + +/* +The following two styles can be used to replace the root node title +with an image of your choice. Simply uncomment the next two styles, +specify the name of your image and be sure to set 'height' to the +proper pixel height of your image. +*/ + +/* +.directory h3.swap { + height: 61px; + background-repeat: no-repeat; + background-image: url("yourimage.gif"); +} +.directory h3.swap span { + display: none; +} +*/ + +.directory > h3 { + margin-top: 0; +} + +.directory p { + margin: 0px; + white-space: nowrap; +} + +.directory div { + display: none; + margin: 0px; +} + +.directory img { + vertical-align: -30%; +} + +/* these are for tree view when not used as main index */ + +.directory-alt { + font-size: 100%; + font-weight: bold; +} + +.directory-alt h3 { + margin: 0px; + margin-top: 1em; + font-size: 11pt; +} + +.directory-alt > h3 { + margin-top: 0; +} + +.directory-alt p { + margin: 0px; + white-space: nowrap; +} + +.directory-alt div { + display: none; + margin: 0px; +} + +.directory-alt img { + vertical-align: -30%; +} + +/* @end */ + +address { + font-style: normal; + color: #333; +} diff --git a/src/doc/html/doxygen.png b/src/doc/html/doxygen.png new file mode 100644 index 0000000..f0a274b Binary files /dev/null and b/src/doc/html/doxygen.png differ diff --git a/src/doc/html/files.html b/src/doc/html/files.html new file mode 100644 index 0000000..c3e75d8 --- /dev/null +++ b/src/doc/html/files.html @@ -0,0 +1,43 @@ + + + + +MotifOfFunctionsLIBrary: ファイル索引 + + + + + + +
+

ファイル一覧

これはファイル一覧です。 + + + + + + + + +
mof/base/mofdef.hpp [コード]
mof/base/tstring.hpp [コード]
mof/math/basic_vector.hpp [コード]
mof/math/vector.hpp [コード]
mof/math/vector2.hpp [コード]
mof/math/vector3.hpp [コード]
mof/math/vector4.hpp [コード]
mof/util/foreach.hpp [コード]
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/foreach_8hpp.html b/src/doc/html/foreach_8hpp.html new file mode 100644 index 0000000..be21090 --- /dev/null +++ b/src/doc/html/foreach_8hpp.html @@ -0,0 +1,55 @@ + + + + +MotifOfFunctionsLIBrary: mof/util/foreach.hpp + + + + + + +
+

mof/util/foreach.hpp

+

ソースコードを見る。

+ + + +

マクロ定義

#define foreach   BOOST_FOREACH
+

マクロ定義

+ +
+
+ + + + +
#define foreach   BOOST_FOREACH
+
+
+ +

foreach.hpp の 3 行で定義されています。

+ +
+
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/foreach_8hpp_source.html b/src/doc/html/foreach_8hpp_source.html new file mode 100644 index 0000000..4bfb0ba --- /dev/null +++ b/src/doc/html/foreach_8hpp_source.html @@ -0,0 +1,34 @@ + + + + +MotifOfFunctionsLIBrary: mof/util/foreach.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/functions.html b/src/doc/html/functions.html new file mode 100644 index 0000000..e05f327 --- /dev/null +++ b/src/doc/html/functions.html @@ -0,0 +1,147 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ + + + + + + +
+これはクラスメンバの一覧で、それぞれが属しているクラスの説明へリンクしています。 + +

- c -

+ + +

- o -

+ + +

- v -

+ + +

- w -

+ + +

- x -

+ + +

- y -

+ + +

- z -

+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/functions_func.html b/src/doc/html/functions_func.html new file mode 100644 index 0000000..c31bce0 --- /dev/null +++ b/src/doc/html/functions_func.html @@ -0,0 +1,124 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ - 関数 + + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/functions_rela.html b/src/doc/html/functions_rela.html new file mode 100644 index 0000000..a376252 --- /dev/null +++ b/src/doc/html/functions_rela.html @@ -0,0 +1,59 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ - 関連する関数 + + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/functions_vars.html b/src/doc/html/functions_vars.html new file mode 100644 index 0000000..313a7f9 --- /dev/null +++ b/src/doc/html/functions_vars.html @@ -0,0 +1,47 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ - 変数 + + + + + + +
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/globals.html b/src/doc/html/globals.html new file mode 100644 index 0000000..dbe10ca --- /dev/null +++ b/src/doc/html/globals.html @@ -0,0 +1,48 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ + + + + + + +
+これはファイルメンバの一覧です。それぞれが属しているファイルの説明へリンクしています。 +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/globals_defs.html b/src/doc/html/globals_defs.html new file mode 100644 index 0000000..8cf52d3 --- /dev/null +++ b/src/doc/html/globals_defs.html @@ -0,0 +1,45 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ + + + + + + +
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/globals_type.html b/src/doc/html/globals_type.html new file mode 100644 index 0000000..6b660b1 --- /dev/null +++ b/src/doc/html/globals_type.html @@ -0,0 +1,45 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ + + + + + + +
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/graph_legend.dot b/src/doc/html/graph_legend.dot new file mode 100644 index 0000000..9a09018 --- /dev/null +++ b/src/doc/html/graph_legend.dot @@ -0,0 +1,22 @@ +digraph G +{ + edge [fontname="FreeSans",fontsize="10",labelfontname="FreeSans",labelfontsize="10"]; + node [fontname="FreeSans",fontsize="10",shape=record]; + Node9 [shape="box",label="Inherited",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",fillcolor="grey75",style="filled" fontcolor="black"]; + Node10 -> Node9 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"]; + Node10 [shape="box",label="PublicBase",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classPublicBase.html"]; + Node11 -> Node10 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"]; + Node11 [shape="box",label="Truncated",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="red",URL="$classTruncated.html"]; + Node13 -> Node9 [dir=back,color="darkgreen",fontsize="10",style="solid",fontname="FreeSans"]; + Node13 [shape="box",label="ProtectedBase",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classProtectedBase.html"]; + Node14 -> Node9 [dir=back,color="firebrick4",fontsize="10",style="solid",fontname="FreeSans"]; + Node14 [shape="box",label="PrivateBase",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classPrivateBase.html"]; + Node15 -> Node9 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"]; + Node15 [shape="box",label="Undocumented",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="grey75"]; + Node16 -> Node9 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"]; + Node16 [shape="box",label="Templ< int >",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classTempl.html"]; + Node17 -> Node16 [dir=back,color="orange",fontsize="10",style="dashed",label="< int >",fontname="FreeSans"]; + Node17 [shape="box",label="Templ< T >",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classTempl.html"]; + Node18 -> Node9 [dir=back,color="darkorchid3",fontsize="10",style="dashed",label="m_usedClass",fontname="FreeSans"]; + Node18 [shape="box",label="Used",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classUsed.html"]; +} diff --git a/src/doc/html/graph_legend.html b/src/doc/html/graph_legend.html new file mode 100644 index 0000000..6ef7b7d --- /dev/null +++ b/src/doc/html/graph_legend.html @@ -0,0 +1,89 @@ + + + + +MotifOfFunctionsLIBrary: グラフの凡例 + + + + + + +
+

グラフの凡例

このページでは、doxygen で生成されたグラフをどのようにみたらよいかを説明します。

+

次の例を考えてみます。

+
/*! 省略されて見えないクラス */
+class Invisible { };
+
+/*! 省略されたクラス(継承関係は隠されている) */
+class Truncated : public Invisible { };
+
+/* doxygen コメントによるドキュメントがないクラス */
+class Undocumented { };
+
+/*! public で継承されたクラス */
+class PublicBase : public Truncated { };
+
+/*! A template class */
+template<class T> class Templ { };
+
+/*! protected で継承されたクラス */
+class ProtectedBase { };
+
+/*! private で継承されたクラス */
+class PrivateBase { };
+
+/*! 継承されたクラスで使われているクラス */
+class Used { };
+
+/*! 複数のクラスを継承している上位クラス */
+class Inherited : public PublicBase,
+                  protected ProtectedBase,
+                  private PrivateBase,
+                  public Undocumented,
+                  public Templ<int>
+{
+  private:
+    Used *m_usedClass;
+};
+

設定ファイル中で、タグ MAX_DOT_GRAPH_HEIGHT が 200 にセットされた場合、次のようなグラフとなります。

+
+graph_legend.png +
+

上のグラフ内のボックスには次のような意味があります。

+
    +
  • +黒く塗りつぶされたボックスは、このグラフに対応する構造体やクラスを表します。
  • +
  • +黒枠のボックスはドキュメントがある構造体やクラスを表します。
  • +
  • +灰色の枠のボックスはドキュメントがない構造体やクラスを表します。
  • +
  • +赤枠のボックスはドキュメントがある構造体やクラスを表しますが、指定されたサイズに収まらないために継承・包含関係をすべて図示することができなかったことを示します。
  • +
+

矢印には次のような意味があります。

+
    +
  • +青い矢印は二つのクラス間の public 継承関係を示します。
  • +
  • +緑の矢印は protected 継承関係を示します。
  • +
  • +赤の矢印は private 継承関係を示します。
  • +
  • +紫の破線矢印は、そのクラスが他のクラスに含まれていたり、利用されていることを示します。また、矢印が指しているクラスや構造体をどの変数でアクセスできるかを矢印のラベルとして示しています。
  • +
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/graph_legend.png b/src/doc/html/graph_legend.png new file mode 100644 index 0000000..b66a055 Binary files /dev/null and b/src/doc/html/graph_legend.png differ diff --git a/src/doc/html/hierarchy.html b/src/doc/html/hierarchy.html new file mode 100644 index 0000000..d4cff56 --- /dev/null +++ b/src/doc/html/hierarchy.html @@ -0,0 +1,54 @@ + + + + +MotifOfFunctionsLIBrary: 階層索引 + + + + + + +
+

クラス階層

+

クラス階層図を見る。

+この継承一覧はおおまかにはソートされていますが、完全にアルファベット順でソートされてはいません。 +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/index.html b/src/doc/html/index.html new file mode 100644 index 0000000..9e9cbb2 --- /dev/null +++ b/src/doc/html/index.html @@ -0,0 +1,27 @@ + + + + +MotifOfFunctionsLIBrary: メインページ + + + + + + +
+

MotifOfFunctionsLIBrary ドキュメント

+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/inherit__graph__0.map b/src/doc/html/inherit__graph__0.map new file mode 100644 index 0000000..91fb4ff --- /dev/null +++ b/src/doc/html/inherit__graph__0.map @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/doc/html/inherit__graph__0.md5 b/src/doc/html/inherit__graph__0.md5 new file mode 100644 index 0000000..e606490 --- /dev/null +++ b/src/doc/html/inherit__graph__0.md5 @@ -0,0 +1 @@ +6355c710ed55fa7c2817f549adf3fdca \ No newline at end of file diff --git a/src/doc/html/inherit__graph__0.png b/src/doc/html/inherit__graph__0.png new file mode 100644 index 0000000..61b5830 Binary files /dev/null and b/src/doc/html/inherit__graph__0.png differ diff --git a/src/doc/html/inherit__graph__1.map b/src/doc/html/inherit__graph__1.map new file mode 100644 index 0000000..5a74f46 --- /dev/null +++ b/src/doc/html/inherit__graph__1.map @@ -0,0 +1,3 @@ + + + diff --git a/src/doc/html/inherit__graph__1.md5 b/src/doc/html/inherit__graph__1.md5 new file mode 100644 index 0000000..1b89529 --- /dev/null +++ b/src/doc/html/inherit__graph__1.md5 @@ -0,0 +1 @@ +d4a8d59d0331744d7a2991d9f015c841 \ No newline at end of file diff --git a/src/doc/html/inherit__graph__1.png b/src/doc/html/inherit__graph__1.png new file mode 100644 index 0000000..81355fe Binary files /dev/null and b/src/doc/html/inherit__graph__1.png differ diff --git a/src/doc/html/inherit__graph__2.map b/src/doc/html/inherit__graph__2.map new file mode 100644 index 0000000..0fbbb2b --- /dev/null +++ b/src/doc/html/inherit__graph__2.map @@ -0,0 +1,3 @@ + + + diff --git a/src/doc/html/inherit__graph__2.md5 b/src/doc/html/inherit__graph__2.md5 new file mode 100644 index 0000000..f3d2de0 --- /dev/null +++ b/src/doc/html/inherit__graph__2.md5 @@ -0,0 +1 @@ +d2e70384cf27013a950397934e9053ed \ No newline at end of file diff --git a/src/doc/html/inherit__graph__2.png b/src/doc/html/inherit__graph__2.png new file mode 100644 index 0000000..8bfe54b Binary files /dev/null and b/src/doc/html/inherit__graph__2.png differ diff --git a/src/doc/html/inherits.html b/src/doc/html/inherits.html new file mode 100644 index 0000000..9b60f46 --- /dev/null +++ b/src/doc/html/inherits.html @@ -0,0 +1,44 @@ + + + + +MotifOfFunctionsLIBrary: クラス階層図 + + + + + + +
+

クラス階層図

+

クラス階層図を見る。

+ + + +
+ +
+ +
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/mofdef_8hpp.html b/src/doc/html/mofdef_8hpp.html new file mode 100644 index 0000000..511e50b --- /dev/null +++ b/src/doc/html/mofdef_8hpp.html @@ -0,0 +1,41 @@ + + + + +MotifOfFunctionsLIBrary: mof/base/mofdef.hpp + + + + + + +
+

mof/base/mofdef.hpp

+

ソースコードを見る。

+ + + + + +

ネームスペース

namespace  mof

型定義

typedef float mof::real
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/mofdef_8hpp_source.html b/src/doc/html/mofdef_8hpp_source.html new file mode 100644 index 0000000..e163c39 --- /dev/null +++ b/src/doc/html/mofdef_8hpp_source.html @@ -0,0 +1,40 @@ + + + + +MotifOfFunctionsLIBrary: mof/base/mofdef.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/namespacemembers.html b/src/doc/html/namespacemembers.html new file mode 100644 index 0000000..276c2f0 --- /dev/null +++ b/src/doc/html/namespacemembers.html @@ -0,0 +1,47 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ + + + + + + +
+これはネームスペースの一覧です。それぞれのネームスペースへリンクしています。
    +
  • real +: mof +
  • +
  • tstring +: mof +
  • +
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/namespacemembers_type.html b/src/doc/html/namespacemembers_type.html new file mode 100644 index 0000000..b08f175 --- /dev/null +++ b/src/doc/html/namespacemembers_type.html @@ -0,0 +1,47 @@ + + + + +MotifOfFunctionsLIBrary: 構成メンバ + + + + + + +
    +
  • real +: mof +
  • +
  • tstring +: mof +
  • +
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/namespacemof.html b/src/doc/html/namespacemof.html new file mode 100644 index 0000000..b091f36 --- /dev/null +++ b/src/doc/html/namespacemof.html @@ -0,0 +1,71 @@ + + + + +MotifOfFunctionsLIBrary: ネームスペース mof + + + + + + +
+

ネームスペース mof

+ + + + + +

ネームスペース

namespace  math

型定義

typedef float real
typedef std::basic_string< TCHAR > tstring
+

型定義

+ +
+
+ + + + +
typedef float mof::real
+
+
+ +

mofdef.hpp の 7 行で定義されています。

+ +
+
+ +
+
+ + + + +
typedef std::basic_string<TCHAR> mof::tstring
+
+
+ +

tstring.hpp の 12 行で定義されています。

+ +
+
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/namespacemof_1_1math.html b/src/doc/html/namespacemof_1_1math.html new file mode 100644 index 0000000..6c3ef9d --- /dev/null +++ b/src/doc/html/namespacemof_1_1math.html @@ -0,0 +1,46 @@ + + + + +MotifOfFunctionsLIBrary: ネームスペース mof::math + + + + + + +
+

ネームスペース mof::math

+ + + + + + + + + +

構成

class  basic_vector
 åŸºåº•ãƒ™ã‚¯ãƒˆãƒ«ãƒ†ãƒ³ãƒ—レートクラス [詳細]
class  vector2
 2次元ベクトルクラス [詳細]
class  vector3
 3次元ベクトルクラス [詳細]
class  vector4
 4次元ベクトルクラス [詳細]
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/namespaces.html b/src/doc/html/namespaces.html new file mode 100644 index 0000000..ba1d020 --- /dev/null +++ b/src/doc/html/namespaces.html @@ -0,0 +1,37 @@ + + + + +MotifOfFunctionsLIBrary: ネームスペース索引 + + + + + + +
+

ネームスペース一覧

ネームスペースの一覧です。 + + +
mof
mof::math
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/structmof_1_1Vector2D-members.html b/src/doc/html/structmof_1_1Vector2D-members.html new file mode 100644 index 0000000..ede1cfc --- /dev/null +++ b/src/doc/html/structmof_1_1Vector2D-members.html @@ -0,0 +1,51 @@ + + + + +MotifOfFunctionsLIBrary: メンバ一覧 + + + + + + +
+

mof::Vector2D メンバ一覧

これは全メンバの一覧です。mof::Vector2D継承メンバも含んでいます。 + + + + + + + + + + + + + + + + +
operator!=(const mof::Vector2D &obj) const mof::Vector2D
operator*(float rhs) const mof::Vector2D
operator*(const mof::Vector2D &vec, real f)mof::Vector2D [friend]
operator*(real f, const mof::Vector2D &vec)mof::Vector2D [friend]
operator+(const mof::Vector2D &rhs) const mof::Vector2D
operator-(const mof::Vector2D &rhs) const mof::Vector2D
operator-() const mof::Vector2D
operator/(float rhs) const mof::Vector2D
operator<<(std::ostream &os, const Vector2D &obj)mof::Vector2D [friend]
operator==(const mof::Vector2D &obj) const mof::Vector2D
Vector2D(real x_, real y_)mof::Vector2D
Vector2D(int x_, int y_)mof::Vector2D
Vector2D()mof::Vector2D
xmof::Vector2D
ymof::Vector2D
~Vector2D(void)mof::Vector2D
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:02:00 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/structmof_1_1Vector2D.html b/src/doc/html/structmof_1_1Vector2D.html new file mode 100644 index 0000000..aafd4ef --- /dev/null +++ b/src/doc/html/structmof_1_1Vector2D.html @@ -0,0 +1,419 @@ + + + + +MotifOfFunctionsLIBrary: 構造体 mof::Vector2D + + + + + + +
+

構造体 mof::Vector2D

+

#include <Vector2D.hpp>

+ +

すべてのメンバ一覧

+ + + + + + + + + + + + + + + + + + + + +

Public メソッド

 Vector2D (real x_, real y_)
 Vector2D (int x_, int y_)
 Vector2D ()
 ~Vector2D (void)
mof::Vector2D operator+ (const mof::Vector2D &rhs) const
mof::Vector2D operator- (const mof::Vector2D &rhs) const
mof::Vector2D operator* (float rhs) const
mof::Vector2D operator/ (float rhs) const
bool operator== (const mof::Vector2D &obj) const
bool operator!= (const mof::Vector2D &obj) const
mof::Vector2D operator- () const

Public 変数

real x
real y

フレンド

mof::Vector2D operator* (const mof::Vector2D &vec, real f)
mof::Vector2D operator* (real f, const mof::Vector2D &vec)
std::ostream & operator<< (std::ostream &os, const Vector2D &obj)
+

説明

+ +

Vector2D.hpp の 8 行で定義されています。

+

コンストラクタとデストラクタ

+ +
+
+ + + + + + + + + + + + + + + + + + +
mof::Vector2D::Vector2D (real  x_,
real  y_ 
)
+
+
+ +

Vector2D.cpp の 4 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
mof::Vector2D::Vector2D (int  x_,
int  y_ 
)
+
+
+ +

Vector2D.cpp の 8 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
mof::Vector2D::Vector2D ( ) 
+
+
+ +

Vector2D.cpp の 13 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + +
mof::Vector2D::~Vector2D (void  ) 
+
+
+ +

Vector2D.cpp の 17 行で定義されています。

+ +
+
+

関数

+ +
+
+ + + + + + + + + +
bool mof::Vector2D::operator!= (const mof::Vector2D obj )  const
+
+
+ +

Vector2D.cpp の 27 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + +
mof::Vector2D mof::Vector2D::operator* (float  rhs )  const
+
+
+ +

Vector2D.cpp の 46 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + +
mof::Vector2D mof::Vector2D::operator+ (const mof::Vector2D rhs )  const
+
+
+ +

Vector2D.cpp の 37 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + +
mof::Vector2D mof::Vector2D::operator- ( )  const
+
+
+ +

Vector2D.cpp の 31 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + +
mof::Vector2D mof::Vector2D::operator- (const mof::Vector2D rhs )  const
+
+
+ +

Vector2D.cpp の 42 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + +
mof::Vector2D mof::Vector2D::operator/ (float  rhs )  const
+
+
+ +

Vector2D.cpp の 51 行で定義されています。

+ +
+
+ +
+
+ + + + + + + + + +
bool mof::Vector2D::operator== (const mof::Vector2D obj )  const
+
+
+ +

Vector2D.cpp の 22 行で定義されています。

+ +
+
+

フレンドと関連する関数

+ +
+
+ + + + + + + + + + + + + + + + + + +
mof::Vector2D operator* (real  f,
const mof::Vector2D vec 
) [friend]
+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
mof::Vector2D operator* (const mof::Vector2D vec,
real  f 
) [friend]
+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
std::ostream& operator<< (std::ostream &  os,
const Vector2D obj 
) [friend]
+
+
+ +
+
+

変数

+ +
+
+ + + + +
real mof::Vector2D::x
+
+
+ +

Vector2D.hpp の 10 行で定義されています。

+ +
+
+ +
+
+ + + + +
real mof::Vector2D::y
+
+
+ +

Vector2D.hpp の 10 行で定義されています。

+ +
+
+
この構造体の説明は次のファイルから生成されました: +
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:02:00 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/tab_b.gif b/src/doc/html/tab_b.gif new file mode 100644 index 0000000..0d62348 Binary files /dev/null and b/src/doc/html/tab_b.gif differ diff --git a/src/doc/html/tab_l.gif b/src/doc/html/tab_l.gif new file mode 100644 index 0000000..9b1e633 Binary files /dev/null and b/src/doc/html/tab_l.gif differ diff --git a/src/doc/html/tab_r.gif b/src/doc/html/tab_r.gif new file mode 100644 index 0000000..ce9dd9f Binary files /dev/null and b/src/doc/html/tab_r.gif differ diff --git a/src/doc/html/tabs.css b/src/doc/html/tabs.css new file mode 100644 index 0000000..a444163 --- /dev/null +++ b/src/doc/html/tabs.css @@ -0,0 +1,105 @@ +/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */ + +DIV.tabs +{ + float : left; + width : 100%; + background : url("tab_b.gif") repeat-x bottom; + margin-bottom : 4px; +} + +DIV.tabs UL +{ + margin : 0px; + padding-left : 10px; + list-style : none; +} + +DIV.tabs LI, DIV.tabs FORM +{ + display : inline; + margin : 0px; + padding : 0px; +} + +DIV.tabs FORM +{ + float : right; +} + +DIV.tabs A +{ + float : left; + background : url("tab_r.gif") no-repeat right top; + border-bottom : 1px solid #84B0C7; + font-size : 80%; + font-weight : bold; + text-decoration : none; +} + +DIV.tabs A:hover +{ + background-position: 100% -150px; +} + +DIV.tabs A:link, DIV.tabs A:visited, +DIV.tabs A:active, DIV.tabs A:hover +{ + color: #1A419D; +} + +DIV.tabs SPAN +{ + float : left; + display : block; + background : url("tab_l.gif") no-repeat left top; + padding : 5px 9px; + white-space : nowrap; +} + +DIV.tabs #MSearchBox +{ + float : right; + display : inline; + font-size : 1em; +} + +DIV.tabs TD +{ + font-size : 80%; + font-weight : bold; + text-decoration : none; +} + + + +/* Commented Backslash Hack hides rule from IE5-Mac \*/ +DIV.tabs SPAN {float : none;} +/* End IE5-Mac hack */ + +DIV.tabs A:hover SPAN +{ + background-position: 0% -150px; +} + +DIV.tabs LI.current A +{ + background-position: 100% -150px; + border-width : 0px; +} + +DIV.tabs LI.current SPAN +{ + background-position: 0% -150px; + padding-bottom : 6px; +} + +DIV.navpath +{ + background : none; + border : none; + border-bottom : 1px solid #84B0C7; + text-align : center; + margin : 2px; + padding : 2px; +} diff --git a/src/doc/html/tstring_8hpp.html b/src/doc/html/tstring_8hpp.html new file mode 100644 index 0000000..6b20c4f --- /dev/null +++ b/src/doc/html/tstring_8hpp.html @@ -0,0 +1,58 @@ + + + + +MotifOfFunctionsLIBrary: mof/base/tstring.hpp + + + + + + +
+

mof/base/tstring.hpp

+

ソースコードを見る。

+ + + + + + +

ネームスペース

namespace  mof

型定義

typedef TCHAR char
typedef std::basic_string< TCHAR > mof::tstring
+

型定義

+ +
+
+ + + + +
typedef TCHAR char
+
+
+ +

tstring.hpp の 5 行で定義されています。

+ +
+
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/tstring_8hpp_source.html b/src/doc/html/tstring_8hpp_source.html new file mode 100644 index 0000000..d573747 --- /dev/null +++ b/src/doc/html/tstring_8hpp_source.html @@ -0,0 +1,44 @@ + + + + +MotifOfFunctionsLIBrary: mof/base/tstring.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector2_8hpp.html b/src/doc/html/vector2_8hpp.html new file mode 100644 index 0000000..0e590fd --- /dev/null +++ b/src/doc/html/vector2_8hpp.html @@ -0,0 +1,43 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector2.hpp + + + + + + +
+

mof/math/vector2.hpp

+

ソースコードを見る。

+ + + + + + + +

構成

class  mof::math::vector2
 2次元ベクトルクラス [詳細]

ネームスペース

namespace  mof
namespace  mof::math
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector2_8hpp_source.html b/src/doc/html/vector2_8hpp_source.html new file mode 100644 index 0000000..8bbbf61 --- /dev/null +++ b/src/doc/html/vector2_8hpp_source.html @@ -0,0 +1,65 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector2.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector3_8hpp.html b/src/doc/html/vector3_8hpp.html new file mode 100644 index 0000000..e40c966 --- /dev/null +++ b/src/doc/html/vector3_8hpp.html @@ -0,0 +1,43 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector3.hpp + + + + + + +
+

mof/math/vector3.hpp

+

ソースコードを見る。

+ + + + + + + +

構成

class  mof::math::vector3
 3次元ベクトルクラス [詳細]

ネームスペース

namespace  mof
namespace  mof::math
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector3_8hpp_source.html b/src/doc/html/vector3_8hpp_source.html new file mode 100644 index 0000000..7317f4e --- /dev/null +++ b/src/doc/html/vector3_8hpp_source.html @@ -0,0 +1,78 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector3.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector4_8hpp.html b/src/doc/html/vector4_8hpp.html new file mode 100644 index 0000000..8c2aa72 --- /dev/null +++ b/src/doc/html/vector4_8hpp.html @@ -0,0 +1,43 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector4.hpp + + + + + + +
+

mof/math/vector4.hpp

+

ソースコードを見る。

+ + + + + + + +

構成

class  mof::math::vector4
 4次元ベクトルクラス [詳細]

ネームスペース

namespace  mof
namespace  mof::math
+
+
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector4_8hpp_source.html b/src/doc/html/vector4_8hpp_source.html new file mode 100644 index 0000000..f2a7971 --- /dev/null +++ b/src/doc/html/vector4_8hpp_source.html @@ -0,0 +1,84 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector4.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector_8hpp.html b/src/doc/html/vector_8hpp.html new file mode 100644 index 0000000..e95b6fa --- /dev/null +++ b/src/doc/html/vector_8hpp.html @@ -0,0 +1,37 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector.hpp + + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/html/vector_8hpp_source.html b/src/doc/html/vector_8hpp_source.html new file mode 100644 index 0000000..ea3f321 --- /dev/null +++ b/src/doc/html/vector_8hpp_source.html @@ -0,0 +1,36 @@ + + + + +MotifOfFunctionsLIBrary: mof/math/vector.hpp ソースファイル + + + + + + +
MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。  + +doxygen 1.6.1
+ + diff --git a/src/doc/latex/Makefile b/src/doc/latex/Makefile new file mode 100644 index 0000000..8b7c89a --- /dev/null +++ b/src/doc/latex/Makefile @@ -0,0 +1,19 @@ +all: clean refman.pdf + +pdf: refman.pdf + +refman.pdf: refman.tex + pdflatex refman.tex + makeindex refman.idx + pdflatex refman.tex + latex_count=5 ; \ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ + do \ + echo "Rerunning latex...." ;\ + pdflatex refman.tex ;\ + latex_count=`expr $$latex_count - 1` ;\ + done + + +clean: + rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out refman.pdf diff --git a/src/doc/latex/Vector2D_8cpp.tex b/src/doc/latex/Vector2D_8cpp.tex new file mode 100644 index 0000000..80c4b93 --- /dev/null +++ b/src/doc/latex/Vector2D_8cpp.tex @@ -0,0 +1,4 @@ +\hypertarget{Vector2D_8cpp}{ +\section{mof/math/Vector2D.cpp} +\label{Vector2D_8cpp}\index{mof/math/Vector2D.cpp@{mof/math/Vector2D.cpp}} +} diff --git a/src/doc/latex/Vector2D_8hpp.tex b/src/doc/latex/Vector2D_8hpp.tex new file mode 100644 index 0000000..aab6588 --- /dev/null +++ b/src/doc/latex/Vector2D_8hpp.tex @@ -0,0 +1,14 @@ +\hypertarget{Vector2D_8hpp}{ +\section{mof/math/Vector2D.hpp} +\label{Vector2D_8hpp}\index{mof/math/Vector2D.hpp@{mof/math/Vector2D.hpp}} +} +\subsection*{構成} +\begin{DoxyCompactItemize} +\item +struct \hyperlink{structmof_1_1Vector2D}{mof::Vector2D} +\end{DoxyCompactItemize} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof}{mof} +\end{DoxyCompactItemize} diff --git a/src/doc/latex/annotated.tex b/src/doc/latex/annotated.tex new file mode 100644 index 0000000..6c94825 --- /dev/null +++ b/src/doc/latex/annotated.tex @@ -0,0 +1,8 @@ +\section{構成} +クラス、構造体、共用体、インタフェースの説明です。\begin{DoxyCompactList} +\item\contentsline{section}{\hyperlink{classboost_1_1addable}{addable} }{\pageref{classboost_1_1addable}}{} +\item\contentsline{section}{\hyperlink{classmof_1_1math_1_1basic__vector}{mof::math::basic\_\-vector$<$ Dim, Derived $>$} (基底ベクトルテンプレートクラス )}{\pageref{classmof_1_1math_1_1basic__vector}}{} +\item\contentsline{section}{\hyperlink{classmof_1_1math_1_1vector2}{mof::math::vector2} (2次元ベクトルクラス )}{\pageref{classmof_1_1math_1_1vector2}}{} +\item\contentsline{section}{\hyperlink{classmof_1_1math_1_1vector3}{mof::math::vector3} (3次元ベクトルクラス )}{\pageref{classmof_1_1math_1_1vector3}}{} +\item\contentsline{section}{\hyperlink{classmof_1_1math_1_1vector4}{mof::math::vector4} (4次元ベクトルクラス )}{\pageref{classmof_1_1math_1_1vector4}}{} +\end{DoxyCompactList} diff --git a/src/doc/latex/basic__vector_8hpp.tex b/src/doc/latex/basic__vector_8hpp.tex new file mode 100644 index 0000000..c1ab675 --- /dev/null +++ b/src/doc/latex/basic__vector_8hpp.tex @@ -0,0 +1,16 @@ +\hypertarget{basic__vector_8hpp}{ +\section{mof/math/basic\_\-vector.hpp} +\label{basic__vector_8hpp}\index{mof/math/basic\_\-vector.hpp@{mof/math/basic\_\-vector.hpp}} +} +\subsection*{構成} +\begin{DoxyCompactItemize} +\item +class \hyperlink{classmof_1_1math_1_1basic__vector}{mof::math::basic\_\-vector$<$ Dim, Derived $>$} +\begin{DoxyCompactList}\small\item\em 基底ベクトルテンプレートクラス \item\end{DoxyCompactList}\end{DoxyCompactItemize} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof}{mof} +\item +namespace \hyperlink{namespacemof_1_1math}{mof::math} +\end{DoxyCompactItemize} diff --git a/src/doc/latex/classboost_1_1addable.tex b/src/doc/latex/classboost_1_1addable.tex new file mode 100644 index 0000000..fe7208a --- /dev/null +++ b/src/doc/latex/classboost_1_1addable.tex @@ -0,0 +1,16 @@ +\hypertarget{classboost_1_1addable}{ +\section{クラス addable} +\label{classboost_1_1addable}\index{boost::addable@{boost::addable}} +} +addableに対する継承グラフ\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=400pt]{classboost_1_1addable__inherit__graph} +\end{center} +\end{figure} + + +このクラスの説明は次のファイルから生成されました:\begin{DoxyCompactItemize} +\item +mof/math/\hyperlink{basic__vector_8hpp}{basic\_\-vector.hpp}\end{DoxyCompactItemize} diff --git a/src/doc/latex/classboost_1_1addable__inherit__graph.eps b/src/doc/latex/classboost_1_1addable__inherit__graph.eps new file mode 100644 index 0000000..d2ace8e --- /dev/null +++ b/src/doc/latex/classboost_1_1addable__inherit__graph.eps @@ -0,0 +1,733 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 476 566 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 440 530 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 191 456 moveto +191 522 lineto +241 522 lineto +241 456 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 191 456 moveto +191 522 lineto +241 522 lineto +241 456 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +199 509 moveto 34 (addable) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 191 500 moveto +241 500 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +214.5 487 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 191 478 moveto +241 478 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +214.5 465 moveto 3 ( ) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 0 242 132 420 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 242 moveto +0 420 lineto +133 420 lineto +133 242 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 242 moveto +0 420 lineto +133 420 lineto +133 242 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 407 moveto 117 (basic_vector< 2, vector2 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 398 moveto +133 398 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 385 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 376 moveto +133 376 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 363 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 349 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 335 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 321 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 307 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 293 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 279 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 265 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 251 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node1->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 183 460 moveto +170 448 154 433 141 420 curveto +138 417 136 414 133 411 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 181.17 463.05 moveto +191 467 lineto +185.78 457.78 lineto +closepath stroke +grestore +% Node4 +gsave +[ /Rect [ 150 242 282 420 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 150 242 moveto +150 420 lineto +283 420 lineto +283 242 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 150 242 moveto +150 420 lineto +283 420 lineto +283 242 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 407 moveto 117 (basic_vector< 3, vector3 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 150 398 moveto +283 398 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 385 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 150 376 moveto +283 376 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 363 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 349 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 335 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 321 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 307 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 293 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 279 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 265 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +157.5 251 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node1->Node4 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 216 446 moveto +216 438 216 429 216 420 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 212.5 446 moveto +216 456 lineto +219.5 446 lineto +closepath stroke +grestore +% Node6 +gsave +[ /Rect [ 300 242 432 420 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 300 242 moveto +300 420 lineto +433 420 lineto +433 242 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 300 242 moveto +300 420 lineto +433 420 lineto +433 242 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 407 moveto 117 (basic_vector< 4, vector4 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 300 398 moveto +433 398 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 385 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 300 376 moveto +433 376 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 363 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 349 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 335 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 321 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 307 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 293 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 279 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 265 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +307.5 251 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node1->Node6 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 249 460 moveto +262 448 278 433 291 420 curveto +294 417 297 414 300 410 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 246.22 457.78 moveto +241 467 lineto +250.83 463.05 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 17 35 115 171 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1vector2.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 17 35 moveto +17 171 lineto +116 171 lineto +116 35 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 17 35 moveto +17 171 lineto +116 171 lineto +116 35 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 158 moveto 83 (mof::math::vector2) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 17 149 moveto +116 149 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +64.5 136 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 17 127 moveto +116 127 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 114 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 100 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 86 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 72 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 58 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 44 moveto 20 (+ y\(\)) alignedtext +grestore +% Node2->Node3 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 66 232 moveto +66 212 66 191 66 171 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 62.5 232 moveto +66 242 lineto +69.5 232 lineto +closepath stroke +grestore +% Node5 +gsave +[ /Rect [ 167 14 265 192 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1vector3.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 167 14 moveto +167 192 lineto +266 192 lineto +266 14 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 167 14 moveto +167 192 lineto +266 192 lineto +266 14 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 179 moveto 83 (mof::math::vector3) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 167 170 moveto +266 170 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +214.5 157 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 167 148 moveto +266 148 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 135 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 121 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 107 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 93 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 79 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 65 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 51 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 37 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +174.5 23 moveto 20 (+ z\(\)) alignedtext +grestore +% Node4->Node5 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 216 232 moveto +216 219 216 205 216 192 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 212.5 232 moveto +216 242 lineto +219.5 232 lineto +closepath stroke +grestore +% Node7 +gsave +[ /Rect [ 317 0 415 206 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1vector4.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 317 0 moveto +317 206 lineto +416 206 lineto +416 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 317 0 moveto +317 206 lineto +416 206 lineto +416 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 193 moveto 83 (mof::math::vector4) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 317 184 moveto +416 184 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +364.5 171 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 317 162 moveto +416 162 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 149 moveto 47 (+ vector4\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 135 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 121 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 107 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 93 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 79 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 65 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 51 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 37 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 23 moveto 22 (+ w\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +324.5 9 moveto 22 (+ w\(\)) alignedtext +grestore +% Node6->Node7 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 366 232 moveto +366 223 366 215 366 206 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 362.5 232 moveto +366 242 lineto +369.5 232 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 476 566 +end +restore +%%EOF diff --git a/src/doc/latex/classboost_1_1addable__inherit__graph.md5 b/src/doc/latex/classboost_1_1addable__inherit__graph.md5 new file mode 100644 index 0000000..fb1f8bf --- /dev/null +++ b/src/doc/latex/classboost_1_1addable__inherit__graph.md5 @@ -0,0 +1 @@ +a9dca63cc0c64d12ec06fb927eb4cff7 \ No newline at end of file diff --git a/src/doc/latex/classboost_1_1addable__inherit__graph.pdf b/src/doc/latex/classboost_1_1addable__inherit__graph.pdf new file mode 100644 index 0000000..72a9982 Binary files /dev/null and b/src/doc/latex/classboost_1_1addable__inherit__graph.pdf differ diff --git a/src/doc/latex/classboost_1_1operators.tex b/src/doc/latex/classboost_1_1operators.tex new file mode 100644 index 0000000..5793aa7 --- /dev/null +++ b/src/doc/latex/classboost_1_1operators.tex @@ -0,0 +1,16 @@ +\hypertarget{classboost_1_1operators}{ +\section{クラス operators} +\label{classboost_1_1operators}\index{boost::operators@{boost::operators}} +} +operatorsに対する継承グラフ\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=400pt]{classboost_1_1operators__inherit__graph} +\end{center} +\end{figure} + + +このクラスの説明は次のファイルから生成されました:\begin{DoxyCompactItemize} +\item +mof/math/\hyperlink{basic__vector_8hpp}{basic\_\-vector.hpp}\end{DoxyCompactItemize} diff --git a/src/doc/latex/classboost_1_1operators__inherit__graph.eps b/src/doc/latex/classboost_1_1operators__inherit__graph.eps new file mode 100644 index 0000000..56486e7 --- /dev/null +++ b/src/doc/latex/classboost_1_1operators__inherit__graph.eps @@ -0,0 +1,375 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 176 412 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 140 376 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 38 302 moveto +38 368 lineto +95 368 lineto +95 302 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 38 302 moveto +38 368 lineto +95 368 lineto +95 302 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +45.5 355 moveto 41 (operators) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 38 346 moveto +95 346 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +64.5 333 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 38 324 moveto +95 324 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +64.5 311 moveto 3 ( ) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 0 172 132 266 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 172 moveto +0 266 lineto +133 266 lineto +133 172 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 172 moveto +0 266 lineto +133 266 lineto +133 172 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 253 moveto 117 (basic_vector< 2, vector2 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 244 moveto +133 244 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 231 moveto 67 (# components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 222 moveto +133 222 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 209 moveto 56 (+ operator+\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 195 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +7.5 181 moveto 56 (+ operator[]\(\)) alignedtext +grestore +% Node1->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 66 292 moveto +66 283 66 274 66 266 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 62.5 292 moveto +66 302 lineto +69.5 292 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 17 0 115 136 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1vector2.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 17 0 moveto +17 136 lineto +116 136 lineto +116 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 17 0 moveto +17 136 lineto +116 136 lineto +116 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 123 moveto 83 (mof::math::vector2) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 17 114 moveto +116 114 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +64.5 101 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 17 92 moveto +116 92 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 79 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 65 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 51 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 37 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 23 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +24.5 9 moveto 20 (+ y\(\)) alignedtext +grestore +% Node2->Node3 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 66 162 moveto +66 153 66 144 66 136 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 62.5 162 moveto +66 172 lineto +69.5 162 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 176 412 +end +restore +%%EOF diff --git a/src/doc/latex/classboost_1_1operators__inherit__graph.md5 b/src/doc/latex/classboost_1_1operators__inherit__graph.md5 new file mode 100644 index 0000000..824a725 --- /dev/null +++ b/src/doc/latex/classboost_1_1operators__inherit__graph.md5 @@ -0,0 +1 @@ +dc9acbcaeb09158102097998c026e5f3 \ No newline at end of file diff --git a/src/doc/latex/classboost_1_1operators__inherit__graph.pdf b/src/doc/latex/classboost_1_1operators__inherit__graph.pdf new file mode 100644 index 0000000..4297e2c Binary files /dev/null and b/src/doc/latex/classboost_1_1operators__inherit__graph.pdf differ diff --git a/src/doc/latex/classmof_1_1math_1_1basic__vector.tex b/src/doc/latex/classmof_1_1math_1_1basic__vector.tex new file mode 100644 index 0000000..36d8d97 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1basic__vector.tex @@ -0,0 +1,206 @@ +\hypertarget{classmof_1_1math_1_1basic__vector}{ +\section{クラス テンプレート mof::math::basic\_\-vector$<$ Dim, Derived $>$} +\label{classmof_1_1math_1_1basic__vector}\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}} +} + + +基底ベクトルテンプレートクラス + + +{\ttfamily \#include $<$basic\_\-vector.hpp$>$}\subsection*{Public メソッド} +\begin{DoxyCompactItemize} +\item +Derived \& \hyperlink{classmof_1_1math_1_1basic__vector_a0ad7349330923c9eda6765508cbf9adb}{operator+=} (const Derived \&rhs) +\item +Derived \& \hyperlink{classmof_1_1math_1_1basic__vector_a197fd3b42704d2c98ab342b57294b394}{operator+=} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs) +\item +Derived \& \hyperlink{classmof_1_1math_1_1basic__vector_a09ef9a5bd4019e47e3ff78fe028ce66b}{operator-\/=} (const Derived \&rhs) +\item +Derived \& \hyperlink{classmof_1_1math_1_1basic__vector_a3394b5ed68517fda87bb7efd79d76d75}{operator-\/=} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs) +\item +Derived \& \hyperlink{classmof_1_1math_1_1basic__vector_a9cdf27a46453961949ce9c2a1da9dc82}{operator$\ast$=} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs) +\item +Derived \& \hyperlink{classmof_1_1math_1_1basic__vector_a211e5b1e561e185114a6846dc36ec16a}{operator/=} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs) +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1basic__vector_a362fda5edbef3ef3b549382786a08d13}{operator\mbox{[}$\,$\mbox{]}} (size\_\-t index) +\begin{DoxyCompactList}\small\item\em 添字による要素へのアクセス \item\end{DoxyCompactList}\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1basic__vector_aab5f62093c85ab0cdc9c00901f7d960b}{operator\mbox{[}$\,$\mbox{]}} (size\_\-t index) const +\begin{DoxyCompactList}\small\item\em 添字による要素へのアクセス(const版) \item\end{DoxyCompactList}\item +bool \hyperlink{classmof_1_1math_1_1basic__vector_abe8efb422e0ca040c9890e1706d2d568}{operator==} (const Derived \&rhs) const +\end{DoxyCompactItemize} +\subsection*{Private 変数} +\begin{DoxyCompactItemize} +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \hyperlink{classmof_1_1math_1_1basic__vector_aa37cd8215df9a52d4f2c9f907623b6ae}{components\_\-} \mbox{[}Dim\mbox{]} +\begin{DoxyCompactList}\small\item\em 要素の配列 \item\end{DoxyCompactList}\end{DoxyCompactItemize} +\subsection*{フレンド} +\begin{DoxyCompactItemize} +\item +Derived \hyperlink{classmof_1_1math_1_1basic__vector_a75d710d276e6f706f5156dffa4ac9de7}{operator+} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs1, Derived \&rhs2) +\item +Derived \hyperlink{classmof_1_1math_1_1basic__vector_a4dcbd30ec9606029c2b8d77a472bbf81}{operator-\/} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs1, Derived \&rhs2) +\item +Derived \hyperlink{classmof_1_1math_1_1basic__vector_a02e6658e3bc21ff333d33e5bcc4aeb9e}{operator$\ast$} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs1, Derived \&rhs2) +\item +Derived \hyperlink{classmof_1_1math_1_1basic__vector_ab70557e06583e31575f5565860728cc2}{operator/} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} rhs1, Derived \&rhs2) +\item +std::ostream \& \hyperlink{classmof_1_1math_1_1basic__vector_a46d2540a8abf6ca59db3ee1551769ab9}{operator$<$$<$} (std::ostream \&stream, const Derived \&rhs) +\begin{DoxyCompactList}\small\item\em デバッグ出力用ストリーム演算子 \item\end{DoxyCompactList}\end{DoxyCompactItemize} + + +\subsection{説明} +\subsubsection*{template$<$size\_\-t Dim, typename Derived$>$ class mof::math::basic\_\-vector$<$ Dim, Derived $>$} + +基底ベクトルテンプレートクラス \begin{DoxyNote}{覚え書き} +このテンプレートから直接特殊化することは想定していない.あくまでvectorxを実装 するための補助テンプレートである. +\end{DoxyNote} + +\begin{DoxyTemplParams}{Template Parameters} +\item[{\em Dim}]ベクトルの次元(要素数) \item[{\em Derived}]特殊化されたテンプレートの派生クラス(vectorx)の型 \end{DoxyTemplParams} + + + basic\_\-vector.hpp の 18 行で定義されています。 + +\subsection{関数} +\hypertarget{classmof_1_1math_1_1basic__vector_a9cdf27a46453961949ce9c2a1da9dc82}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator$\ast$=@{operator$\ast$=}} +\index{operator$\ast$=@{operator$\ast$=}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator$\ast$=}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator$\ast$= ({\bf real} {\em rhs})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a9cdf27a46453961949ce9c2a1da9dc82} + + + basic\_\-vector.hpp の 73 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a197fd3b42704d2c98ab342b57294b394}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator+=@{operator+=}} +\index{operator+=@{operator+=}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator+=}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator+= ({\bf real} {\em rhs})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a197fd3b42704d2c98ab342b57294b394} + + + basic\_\-vector.hpp の 39 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a0ad7349330923c9eda6765508cbf9adb}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator+=@{operator+=}} +\index{operator+=@{operator+=}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator+=}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator+= (const Derived \& {\em rhs})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a0ad7349330923c9eda6765508cbf9adb} + + + basic\_\-vector.hpp の 33 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a3394b5ed68517fda87bb7efd79d76d75}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator-\/=@{operator-\/=}} +\index{operator-\/=@{operator-\/=}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator-\/=}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator-\/= ({\bf real} {\em rhs})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a3394b5ed68517fda87bb7efd79d76d75} + + + basic\_\-vector.hpp の 59 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a09ef9a5bd4019e47e3ff78fe028ce66b}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator-\/=@{operator-\/=}} +\index{operator-\/=@{operator-\/=}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator-\/=}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator-\/= (const Derived \& {\em rhs})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a09ef9a5bd4019e47e3ff78fe028ce66b} + + + basic\_\-vector.hpp の 53 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a211e5b1e561e185114a6846dc36ec16a}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator/=@{operator/=}} +\index{operator/=@{operator/=}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator/=}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator/= ({\bf real} {\em rhs})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a211e5b1e561e185114a6846dc36ec16a} + + + basic\_\-vector.hpp の 87 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_abe8efb422e0ca040c9890e1706d2d568}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator==@{operator==}} +\index{operator==@{operator==}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator==}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ bool {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator== (const Derived \& {\em rhs}) const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_abe8efb422e0ca040c9890e1706d2d568} + + + basic\_\-vector.hpp の 116 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_aab5f62093c85ab0cdc9c00901f7d960b}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator\mbox{[}\mbox{]}@{operator[]}} +\index{operator\mbox{[}\mbox{]}@{operator[]}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator[]}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ const {\bf real}\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator\mbox{[}$\,$\mbox{]} (size\_\-t {\em index}) const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_aab5f62093c85ab0cdc9c00901f7d960b} + + +添字による要素へのアクセス(const版) +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em index}]添字.最大値はDim-\/1 \end{DoxyParams} +\begin{DoxyReturn}{戻り値} +引数で指定した要素の参照 +\end{DoxyReturn} + + + basic\_\-vector.hpp の 113 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a362fda5edbef3ef3b549382786a08d13}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator\mbox{[}\mbox{]}@{operator[]}} +\index{operator\mbox{[}\mbox{]}@{operator[]}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator[]}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ {\bf real}\& {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::operator\mbox{[}$\,$\mbox{]} (size\_\-t {\em index})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a362fda5edbef3ef3b549382786a08d13} + + +添字による要素へのアクセス +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em index}]添字.最大値はDim-\/1 \end{DoxyParams} +\begin{DoxyReturn}{戻り値} +引数で指定した要素の参照 +\end{DoxyReturn} + + + basic\_\-vector.hpp の 106 行で定義されています。 + +\subsection{フレンドと関連する関数} +\hypertarget{classmof_1_1math_1_1basic__vector_a02e6658e3bc21ff333d33e5bcc4aeb9e}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator$\ast$@{operator$\ast$}} +\index{operator$\ast$@{operator$\ast$}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator$\ast$}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived operator$\ast$ ({\bf real} {\em rhs1}, \/ Derived \& {\em rhs2})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a02e6658e3bc21ff333d33e5bcc4aeb9e} + + + basic\_\-vector.hpp の 79 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a75d710d276e6f706f5156dffa4ac9de7}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator+@{operator+}} +\index{operator+@{operator+}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator+}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived operator+ ({\bf real} {\em rhs1}, \/ Derived \& {\em rhs2})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a75d710d276e6f706f5156dffa4ac9de7} + + + basic\_\-vector.hpp の 45 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a4dcbd30ec9606029c2b8d77a472bbf81}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator-\/@{operator-\/}} +\index{operator-\/@{operator-\/}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator-\/}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived operator-\/ ({\bf real} {\em rhs1}, \/ Derived \& {\em rhs2})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a4dcbd30ec9606029c2b8d77a472bbf81} + + + basic\_\-vector.hpp の 65 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_ab70557e06583e31575f5565860728cc2}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator/@{operator/}} +\index{operator/@{operator/}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator/}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ Derived operator/ ({\bf real} {\em rhs1}, \/ Derived \& {\em rhs2})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_ab70557e06583e31575f5565860728cc2} + + + basic\_\-vector.hpp の 93 行で定義されています。\hypertarget{classmof_1_1math_1_1basic__vector_a46d2540a8abf6ca59db3ee1551769ab9}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!operator$<$$<$@{operator$<$$<$}} +\index{operator$<$$<$@{operator$<$$<$}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{operator$<$$<$}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ std::ostream\& operator$<$$<$ (std::ostream \& {\em stream}, \/ const Derived \& {\em rhs})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_a46d2540a8abf6ca59db3ee1551769ab9} + + +デバッグ出力用ストリーム演算子 +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em stream}]出力ストリーム \item[\mbox{$\leftarrow$} {\em rhs}]出力対象となるベクトルオブジェクト \end{DoxyParams} +\begin{DoxyReturn}{戻り値} +引数で与えられた出力ストリーム +\end{DoxyReturn} + + + basic\_\-vector.hpp の 133 行で定義されています。 + +\subsection{変数} +\hypertarget{classmof_1_1math_1_1basic__vector_aa37cd8215df9a52d4f2c9f907623b6ae}{ +\index{mof::math::basic\_\-vector@{mof::math::basic\_\-vector}!components\_\-@{components\_\-}} +\index{components\_\-@{components\_\-}!mof::math::basic_vector@{mof::math::basic\_\-vector}} +\subsubsection[{components\_\-}]{\setlength{\rightskip}{0pt plus 5cm}template$<$size\_\-t Dim, typename Derived$>$ {\bf real} {\bf mof::math::basic\_\-vector}$<$ Dim, Derived $>$::{\bf components\_\-}\mbox{[}Dim\mbox{]}\hspace{0.3cm}{\ttfamily \mbox{[}private\mbox{]}}}} +\label{classmof_1_1math_1_1basic__vector_aa37cd8215df9a52d4f2c9f907623b6ae} + + +要素の配列 + + basic\_\-vector.hpp の 28 行で定義されています。 + +このクラスの説明は次のファイルから生成されました:\begin{DoxyCompactItemize} +\item +mof/math/\hyperlink{basic__vector_8hpp}{basic\_\-vector.hpp}\end{DoxyCompactItemize} diff --git a/src/doc/latex/classmof_1_1math_1_1vector2.tex b/src/doc/latex/classmof_1_1math_1_1vector2.tex new file mode 100644 index 0000000..76fe160 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector2.tex @@ -0,0 +1,103 @@ +\hypertarget{classmof_1_1math_1_1vector2}{ +\section{クラス mof::math::vector2} +\label{classmof_1_1math_1_1vector2}\index{mof::math::vector2@{mof::math::vector2}} +} + + +2次元ベクトルクラス + + +{\ttfamily \#include $<$vector2.hpp$>$}mof::math::vector2に対する継承グラフ\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=400pt]{classmof_1_1math_1_1vector2__inherit__graph} +\end{center} +\end{figure} +mof::math::vector2のコラボレーション図\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=400pt]{classmof_1_1math_1_1vector2__coll__graph} +\end{center} +\end{figure} +\subsection*{Public メソッド} +\begin{DoxyCompactItemize} +\item +\hyperlink{classmof_1_1math_1_1vector2_a9f1349c21d90cb23554501635edfef42}{vector2} () +\begin{DoxyCompactList}\small\item\em デフォルトコンストラクタ.全ての要素を0で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{classmof_1_1math_1_1vector2_a80bd158a75ae9ce1b8f59ee5f620f037}{vector2} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} x, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} y) +\begin{DoxyCompactList}\small\item\em 指定した値で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector2_a8d9c967101b1c64a4d526234bc234b2e}{x} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector2_a27dc38e277bb9779b1d9197424b1a828}{x} () const +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector2_ab190ed4ab497797bd8df9cce7f0396cc}{y} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector2_a0c37b11187cc4ddd31d7f6bfc3dd8cd8}{y} () const +\end{DoxyCompactItemize} + + +\subsection{説明} +2次元ベクトルクラス + + vector2.hpp の 11 行で定義されています。 + +\subsection{コンストラクタとデストラクタ} +\hypertarget{classmof_1_1math_1_1vector2_a9f1349c21d90cb23554501635edfef42}{ +\index{mof::math::vector2@{mof::math::vector2}!vector2@{vector2}} +\index{vector2@{vector2}!mof::math::vector2@{mof::math::vector2}} +\subsubsection[{vector2}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector2::vector2 ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector2_a9f1349c21d90cb23554501635edfef42} + + +デフォルトコンストラクタ.全ての要素を0で初期化する. + + vector2.hpp の 18 行で定義されています。\hypertarget{classmof_1_1math_1_1vector2_a80bd158a75ae9ce1b8f59ee5f620f037}{ +\index{mof::math::vector2@{mof::math::vector2}!vector2@{vector2}} +\index{vector2@{vector2}!mof::math::vector2@{mof::math::vector2}} +\subsubsection[{vector2}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector2::vector2 ({\bf real} {\em x}, \/ {\bf real} {\em y})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector2_a80bd158a75ae9ce1b8f59ee5f620f037} + + +指定した値で初期化する. +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em x}]x座標成分 \item[\mbox{$\leftarrow$} {\em y}]y座標成分 \end{DoxyParams} + + + vector2.hpp の 29 行で定義されています。 + +\subsection{関数} +\hypertarget{classmof_1_1math_1_1vector2_a27dc38e277bb9779b1d9197424b1a828}{ +\index{mof::math::vector2@{mof::math::vector2}!x@{x}} +\index{x@{x}!mof::math::vector2@{mof::math::vector2}} +\subsubsection[{x}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector2::x () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector2_a27dc38e277bb9779b1d9197424b1a828} + + + vector2.hpp の 37 行で定義されています。\hypertarget{classmof_1_1math_1_1vector2_a8d9c967101b1c64a4d526234bc234b2e}{ +\index{mof::math::vector2@{mof::math::vector2}!x@{x}} +\index{x@{x}!mof::math::vector2@{mof::math::vector2}} +\subsubsection[{x}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector2::x ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector2_a8d9c967101b1c64a4d526234bc234b2e} + + + vector2.hpp の 36 行で定義されています。\hypertarget{classmof_1_1math_1_1vector2_a0c37b11187cc4ddd31d7f6bfc3dd8cd8}{ +\index{mof::math::vector2@{mof::math::vector2}!y@{y}} +\index{y@{y}!mof::math::vector2@{mof::math::vector2}} +\subsubsection[{y}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector2::y () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector2_a0c37b11187cc4ddd31d7f6bfc3dd8cd8} + + + vector2.hpp の 40 行で定義されています。\hypertarget{classmof_1_1math_1_1vector2_ab190ed4ab497797bd8df9cce7f0396cc}{ +\index{mof::math::vector2@{mof::math::vector2}!y@{y}} +\index{y@{y}!mof::math::vector2@{mof::math::vector2}} +\subsubsection[{y}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector2::y ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector2_ab190ed4ab497797bd8df9cce7f0396cc} + + + vector2.hpp の 39 行で定義されています。 + +このクラスの説明は次のファイルから生成されました:\begin{DoxyCompactItemize} +\item +mof/math/\hyperlink{vector2_8hpp}{vector2.hpp}\end{DoxyCompactItemize} diff --git a/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.eps b/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.eps new file mode 100644 index 0000000..1ad5fc9 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.eps @@ -0,0 +1,393 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 1146 496 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 1110 460 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 502 0 moveto +502 136 lineto +601 136 lineto +601 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 0 moveto +502 136 lineto +601 136 lineto +601 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 123 moveto 83 (mof::math::vector2) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 114 moveto +601 114 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 101 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 92 moveto +601 92 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 79 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 65 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 51 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 37 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 23 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 9 moveto 20 (+ y\(\)) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 460 172 642 350 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 460 172 moveto +460 350 lineto +643 350 lineto +643 172 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 172 moveto +460 350 lineto +643 350 lineto +643 172 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 337 moveto 167 (mof::math::basic_vector< 2, vector2 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 328 moveto +643 328 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 315 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 306 moveto +643 306 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 293 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 279 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 265 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 251 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 237 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 223 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 209 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 195 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 181 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node2->Node1 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 551 162 moveto +551 153 551 145 551 136 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 547.5 162 moveto +551 172 lineto +554.5 162 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 0 386 1102 452 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classboost_1_1addable.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 386 moveto +0 452 lineto +1102 452 lineto +1102 386 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 386 moveto +0 452 lineto +1102 452 lineto +1102 386 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +8 439 moveto 1086 (boost::addable< vector2 , boost::addable2< vector2 , real , boost::subtractable< vector2 , boost::subtractable2< vector2 , real , boost::multipliable2< vector2 , real , boost::dividable2< vector2 , real , boost::equality_comparable< vector2 > > > > > > >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 430 moveto +1102 430 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 417 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 408 moveto +1102 408 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 395 moveto 3 ( ) alignedtext +grestore +% Node3->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 551 376 moveto +551 368 551 359 551 350 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 547.5 376 moveto +551 386 lineto +554.5 376 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 1146 496 +end +restore +%%EOF diff --git a/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.md5 b/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.md5 new file mode 100644 index 0000000..1965e91 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.md5 @@ -0,0 +1 @@ +82b297f55df5a489e6a1b44372e28888 \ No newline at end of file diff --git a/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.pdf b/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.pdf new file mode 100644 index 0000000..a1f8bec Binary files /dev/null and b/src/doc/latex/classmof_1_1math_1_1vector2__coll__graph.pdf differ diff --git a/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.eps b/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.eps new file mode 100644 index 0000000..1ad5fc9 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.eps @@ -0,0 +1,393 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 1146 496 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 1110 460 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 502 0 moveto +502 136 lineto +601 136 lineto +601 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 0 moveto +502 136 lineto +601 136 lineto +601 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 123 moveto 83 (mof::math::vector2) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 114 moveto +601 114 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 101 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 92 moveto +601 92 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 79 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 65 moveto 47 (+ vector2\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 51 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 37 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 23 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 9 moveto 20 (+ y\(\)) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 460 172 642 350 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 460 172 moveto +460 350 lineto +643 350 lineto +643 172 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 172 moveto +460 350 lineto +643 350 lineto +643 172 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 337 moveto 167 (mof::math::basic_vector< 2, vector2 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 328 moveto +643 328 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 315 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 306 moveto +643 306 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 293 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 279 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 265 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 251 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 237 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 223 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 209 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 195 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 181 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node2->Node1 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 551 162 moveto +551 153 551 145 551 136 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 547.5 162 moveto +551 172 lineto +554.5 162 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 0 386 1102 452 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classboost_1_1addable.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 386 moveto +0 452 lineto +1102 452 lineto +1102 386 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 386 moveto +0 452 lineto +1102 452 lineto +1102 386 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +8 439 moveto 1086 (boost::addable< vector2 , boost::addable2< vector2 , real , boost::subtractable< vector2 , boost::subtractable2< vector2 , real , boost::multipliable2< vector2 , real , boost::dividable2< vector2 , real , boost::equality_comparable< vector2 > > > > > > >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 430 moveto +1102 430 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 417 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 408 moveto +1102 408 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 395 moveto 3 ( ) alignedtext +grestore +% Node3->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 551 376 moveto +551 368 551 359 551 350 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 547.5 376 moveto +551 386 lineto +554.5 376 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 1146 496 +end +restore +%%EOF diff --git a/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.md5 b/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.md5 new file mode 100644 index 0000000..1965e91 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.md5 @@ -0,0 +1 @@ +82b297f55df5a489e6a1b44372e28888 \ No newline at end of file diff --git a/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.pdf b/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.pdf new file mode 100644 index 0000000..3341462 Binary files /dev/null and b/src/doc/latex/classmof_1_1math_1_1vector2__inherit__graph.pdf differ diff --git a/src/doc/latex/classmof_1_1math_1_1vector3.tex b/src/doc/latex/classmof_1_1math_1_1vector3.tex new file mode 100644 index 0000000..2853229 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector3.tex @@ -0,0 +1,135 @@ +\hypertarget{classmof_1_1math_1_1vector3}{ +\section{クラス mof::math::vector3} +\label{classmof_1_1math_1_1vector3}\index{mof::math::vector3@{mof::math::vector3}} +} + + +3次元ベクトルクラス + + +{\ttfamily \#include $<$vector3.hpp$>$}mof::math::vector3に対する継承グラフ\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=400pt]{classmof_1_1math_1_1vector3__inherit__graph} +\end{center} +\end{figure} +mof::math::vector3のコラボレーション図\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=400pt]{classmof_1_1math_1_1vector3__coll__graph} +\end{center} +\end{figure} +\subsection*{Public メソッド} +\begin{DoxyCompactItemize} +\item +\hyperlink{classmof_1_1math_1_1vector3_ab20946d30c11ecbcebabee42924f0b88}{vector3} () +\begin{DoxyCompactList}\small\item\em デフォルトコンストラクタ.全ての要素を0で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{classmof_1_1math_1_1vector3_afd88557d26d8c89f9f17160ad702f37c}{vector3} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} x, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} y, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} z) +\begin{DoxyCompactList}\small\item\em 指定した値で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{classmof_1_1math_1_1vector3_a4b5a5ea014089119dee521efaa95e835}{vector3} (const \hyperlink{classmof_1_1math_1_1vector2}{vector2} \&xy, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} z=1) +\begin{DoxyCompactList}\small\item\em 指定した値で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector3_a56ce5fd1e00468c18ad8b4d6d53f1a45}{x} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector3_ac61576111c059a96f758957b1680a46d}{x} () const +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector3_a5d041a941cfd02adf74564ac14327387}{y} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector3_a3c1d673b0a484ddd5334d683df12e212}{y} () const +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector3_a7b7e52e6033b5010c587a08a47487ac2}{z} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector3_ad62950e489d5ee41da4f8738a2e0d3ad}{z} () const +\end{DoxyCompactItemize} + + +\subsection{説明} +3次元ベクトルクラス + + vector3.hpp の 12 行で定義されています。 + +\subsection{コンストラクタとデストラクタ} +\hypertarget{classmof_1_1math_1_1vector3_ab20946d30c11ecbcebabee42924f0b88}{ +\index{mof::math::vector3@{mof::math::vector3}!vector3@{vector3}} +\index{vector3@{vector3}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{vector3}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector3::vector3 ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_ab20946d30c11ecbcebabee42924f0b88} + + +デフォルトコンストラクタ.全ての要素を0で初期化する. + + vector3.hpp の 19 行で定義されています。\hypertarget{classmof_1_1math_1_1vector3_afd88557d26d8c89f9f17160ad702f37c}{ +\index{mof::math::vector3@{mof::math::vector3}!vector3@{vector3}} +\index{vector3@{vector3}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{vector3}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector3::vector3 ({\bf real} {\em x}, \/ {\bf real} {\em y}, \/ {\bf real} {\em z})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_afd88557d26d8c89f9f17160ad702f37c} + + +指定した値で初期化する. +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em x}]x座標成分 \item[\mbox{$\leftarrow$} {\em y}]y座標成分 \item[\mbox{$\leftarrow$} {\em z}]z座標成分 \end{DoxyParams} + + + vector3.hpp の 32 行で定義されています。\hypertarget{classmof_1_1math_1_1vector3_a4b5a5ea014089119dee521efaa95e835}{ +\index{mof::math::vector3@{mof::math::vector3}!vector3@{vector3}} +\index{vector3@{vector3}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{vector3}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector3::vector3 (const {\bf vector2} \& {\em xy}, \/ {\bf real} {\em z} = {\ttfamily 1})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_a4b5a5ea014089119dee521efaa95e835} + + +指定した値で初期化する. +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em xy}]2次元ベクトル \item[\mbox{$\leftarrow$} {\em z}]z座標成分 \end{DoxyParams} + + + vector3.hpp の 44 行で定義されています。 + +\subsection{関数} +\hypertarget{classmof_1_1math_1_1vector3_ac61576111c059a96f758957b1680a46d}{ +\index{mof::math::vector3@{mof::math::vector3}!x@{x}} +\index{x@{x}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{x}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector3::x () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_ac61576111c059a96f758957b1680a46d} + + + vector3.hpp の 53 行で定義されています。\hypertarget{classmof_1_1math_1_1vector3_a56ce5fd1e00468c18ad8b4d6d53f1a45}{ +\index{mof::math::vector3@{mof::math::vector3}!x@{x}} +\index{x@{x}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{x}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector3::x ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_a56ce5fd1e00468c18ad8b4d6d53f1a45} + + + vector3.hpp の 52 行で定義されています。\hypertarget{classmof_1_1math_1_1vector3_a3c1d673b0a484ddd5334d683df12e212}{ +\index{mof::math::vector3@{mof::math::vector3}!y@{y}} +\index{y@{y}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{y}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector3::y () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_a3c1d673b0a484ddd5334d683df12e212} + + + vector3.hpp の 56 行で定義されています。\hypertarget{classmof_1_1math_1_1vector3_a5d041a941cfd02adf74564ac14327387}{ +\index{mof::math::vector3@{mof::math::vector3}!y@{y}} +\index{y@{y}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{y}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector3::y ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_a5d041a941cfd02adf74564ac14327387} + + + vector3.hpp の 55 行で定義されています。\hypertarget{classmof_1_1math_1_1vector3_ad62950e489d5ee41da4f8738a2e0d3ad}{ +\index{mof::math::vector3@{mof::math::vector3}!z@{z}} +\index{z@{z}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{z}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector3::z () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_ad62950e489d5ee41da4f8738a2e0d3ad} + + + vector3.hpp の 59 行で定義されています。\hypertarget{classmof_1_1math_1_1vector3_a7b7e52e6033b5010c587a08a47487ac2}{ +\index{mof::math::vector3@{mof::math::vector3}!z@{z}} +\index{z@{z}!mof::math::vector3@{mof::math::vector3}} +\subsubsection[{z}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector3::z ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector3_a7b7e52e6033b5010c587a08a47487ac2} + + + vector3.hpp の 58 行で定義されています。 + +このクラスの説明は次のファイルから生成されました:\begin{DoxyCompactItemize} +\item +mof/math/\hyperlink{vector3_8hpp}{vector3.hpp}\end{DoxyCompactItemize} diff --git a/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.eps b/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.eps new file mode 100644 index 0000000..7661e0d --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.eps @@ -0,0 +1,402 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 1146 538 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 1110 502 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 502 0 moveto +502 178 lineto +601 178 lineto +601 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 0 moveto +502 178 lineto +601 178 lineto +601 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 165 moveto 83 (mof::math::vector3) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 156 moveto +601 156 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 143 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 134 moveto +601 134 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 121 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 107 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 93 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 79 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 65 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 51 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 37 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 23 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 9 moveto 20 (+ z\(\)) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 460 214 642 392 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 460 214 moveto +460 392 lineto +643 392 lineto +643 214 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 214 moveto +460 392 lineto +643 392 lineto +643 214 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 379 moveto 167 (mof::math::basic_vector< 3, vector3 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 370 moveto +643 370 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 357 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 348 moveto +643 348 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 335 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 321 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 307 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 293 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 279 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 265 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 251 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 237 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 223 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node2->Node1 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 551 204 moveto +551 195 551 187 551 178 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 547.5 204 moveto +551 214 lineto +554.5 204 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 0 428 1102 494 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classboost_1_1addable.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 428 moveto +0 494 lineto +1102 494 lineto +1102 428 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 428 moveto +0 494 lineto +1102 494 lineto +1102 428 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +8 481 moveto 1086 (boost::addable< vector3 , boost::addable2< vector3 , real , boost::subtractable< vector3 , boost::subtractable2< vector3 , real , boost::multipliable2< vector3 , real , boost::dividable2< vector3 , real , boost::equality_comparable< vector3 > > > > > > >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 472 moveto +1102 472 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 459 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 450 moveto +1102 450 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 437 moveto 3 ( ) alignedtext +grestore +% Node3->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 551 418 moveto +551 410 551 401 551 392 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 547.5 418 moveto +551 428 lineto +554.5 418 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 1146 538 +end +restore +%%EOF diff --git a/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.md5 b/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.md5 new file mode 100644 index 0000000..6f779c5 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.md5 @@ -0,0 +1 @@ +07708bd92fb0b4f56db99f7a6bb49c98 \ No newline at end of file diff --git a/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.pdf b/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.pdf new file mode 100644 index 0000000..53b1a2d Binary files /dev/null and b/src/doc/latex/classmof_1_1math_1_1vector3__coll__graph.pdf differ diff --git a/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.eps b/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.eps new file mode 100644 index 0000000..7661e0d --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.eps @@ -0,0 +1,402 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 1146 538 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 1110 502 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 502 0 moveto +502 178 lineto +601 178 lineto +601 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 0 moveto +502 178 lineto +601 178 lineto +601 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 165 moveto 83 (mof::math::vector3) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 156 moveto +601 156 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 143 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 134 moveto +601 134 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 121 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 107 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 93 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 79 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 65 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 51 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 37 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 23 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 9 moveto 20 (+ z\(\)) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 460 214 642 392 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 460 214 moveto +460 392 lineto +643 392 lineto +643 214 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 214 moveto +460 392 lineto +643 392 lineto +643 214 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 379 moveto 167 (mof::math::basic_vector< 3, vector3 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 370 moveto +643 370 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 357 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 348 moveto +643 348 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 335 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 321 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 307 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 293 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 279 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 265 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 251 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 237 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 223 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node2->Node1 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 551 204 moveto +551 195 551 187 551 178 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 547.5 204 moveto +551 214 lineto +554.5 204 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 0 428 1102 494 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classboost_1_1addable.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 428 moveto +0 494 lineto +1102 494 lineto +1102 428 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 428 moveto +0 494 lineto +1102 494 lineto +1102 428 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +8 481 moveto 1086 (boost::addable< vector3 , boost::addable2< vector3 , real , boost::subtractable< vector3 , boost::subtractable2< vector3 , real , boost::multipliable2< vector3 , real , boost::dividable2< vector3 , real , boost::equality_comparable< vector3 > > > > > > >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 472 moveto +1102 472 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 459 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 450 moveto +1102 450 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 437 moveto 3 ( ) alignedtext +grestore +% Node3->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 551 418 moveto +551 410 551 401 551 392 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 547.5 418 moveto +551 428 lineto +554.5 418 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 1146 538 +end +restore +%%EOF diff --git a/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.md5 b/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.md5 new file mode 100644 index 0000000..6f779c5 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.md5 @@ -0,0 +1 @@ +07708bd92fb0b4f56db99f7a6bb49c98 \ No newline at end of file diff --git a/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.pdf b/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.pdf new file mode 100644 index 0000000..07b10f7 Binary files /dev/null and b/src/doc/latex/classmof_1_1math_1_1vector3__inherit__graph.pdf differ diff --git a/src/doc/latex/classmof_1_1math_1_1vector4.tex b/src/doc/latex/classmof_1_1math_1_1vector4.tex new file mode 100644 index 0000000..debdcf9 --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector4.tex @@ -0,0 +1,153 @@ +\hypertarget{classmof_1_1math_1_1vector4}{ +\section{クラス mof::math::vector4} +\label{classmof_1_1math_1_1vector4}\index{mof::math::vector4@{mof::math::vector4}} +} + + +4次元ベクトルクラス + + +{\ttfamily \#include $<$vector4.hpp$>$}mof::math::vector4に対する継承グラフ\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=400pt]{classmof_1_1math_1_1vector4__inherit__graph} +\end{center} +\end{figure} +mof::math::vector4のコラボレーション図\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=400pt]{classmof_1_1math_1_1vector4__coll__graph} +\end{center} +\end{figure} +\subsection*{Public メソッド} +\begin{DoxyCompactItemize} +\item +\hyperlink{classmof_1_1math_1_1vector4_a7fb10fe7641753bee873c04fa573dca2}{vector4} () +\begin{DoxyCompactList}\small\item\em デフォルトコンストラクタ.全ての要素を0で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{classmof_1_1math_1_1vector4_a1747cca2a606486944d488711cfa9d01}{vector3} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} x, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} y, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} z, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} w) +\begin{DoxyCompactList}\small\item\em 指定した値で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{classmof_1_1math_1_1vector4_a33d2888698d13bc89c7bd9d8fc861de9}{vector3} (const \hyperlink{classmof_1_1math_1_1vector3}{vector3} \&xyz, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} w=1) +\begin{DoxyCompactList}\small\item\em 指定した値で初期化する. \item\end{DoxyCompactList}\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_ab9b04199f8c134cb16554df61fbb610c}{x} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_aef4a9fbbc6727278c93f61901ca17d2d}{x} () const +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_ad4e2ea273544c546fa66c401679f426f}{y} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_ab796e0062995e579377682d9c47437f4}{y} () const +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_a13501125053e6676335db8420218ee59}{z} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_a2d65265cc9e5b74c9695b77c12a55077}{z} () const +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_aa88d83b270e30ae8ad19e647b730104f}{w} () +\item +const \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \& \hyperlink{classmof_1_1math_1_1vector4_a7923533d63230c6a7d32f5e0942e4542}{w} () const +\end{DoxyCompactItemize} + + +\subsection{説明} +4次元ベクトルクラス + + vector4.hpp の 12 行で定義されています。 + +\subsection{コンストラクタとデストラクタ} +\hypertarget{classmof_1_1math_1_1vector4_a7fb10fe7641753bee873c04fa573dca2}{ +\index{mof::math::vector4@{mof::math::vector4}!vector4@{vector4}} +\index{vector4@{vector4}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{vector4}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector4::vector4 ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_a7fb10fe7641753bee873c04fa573dca2} + + +デフォルトコンストラクタ.全ての要素を0で初期化する. + + vector4.hpp の 19 行で定義されています。 + +\subsection{関数} +\hypertarget{classmof_1_1math_1_1vector4_a33d2888698d13bc89c7bd9d8fc861de9}{ +\index{mof::math::vector4@{mof::math::vector4}!vector3@{vector3}} +\index{vector3@{vector3}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{vector3}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector4::vector3 (const {\bf vector3} \& {\em xyz}, \/ {\bf real} {\em w} = {\ttfamily 1})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_a33d2888698d13bc89c7bd9d8fc861de9} + + +指定した値で初期化する. +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em xyz}]3次元ベクトル \item[\mbox{$\leftarrow$} {\em w}]w座標成分 \end{DoxyParams} + + + vector4.hpp の 47 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_a1747cca2a606486944d488711cfa9d01}{ +\index{mof::math::vector4@{mof::math::vector4}!vector3@{vector3}} +\index{vector3@{vector3}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{vector3}]{\setlength{\rightskip}{0pt plus 5cm}mof::math::vector4::vector3 ({\bf real} {\em x}, \/ {\bf real} {\em y}, \/ {\bf real} {\em z}, \/ {\bf real} {\em w})\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_a1747cca2a606486944d488711cfa9d01} + + +指定した値で初期化する. +\begin{DoxyParams}{引数} +\item[\mbox{$\leftarrow$} {\em x}]x座標成分 \item[\mbox{$\leftarrow$} {\em y}]y座標成分 \item[\mbox{$\leftarrow$} {\em z}]z座標成分 \item[\mbox{$\leftarrow$} {\em w}]w座標成分 \end{DoxyParams} + + + vector4.hpp の 34 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_a7923533d63230c6a7d32f5e0942e4542}{ +\index{mof::math::vector4@{mof::math::vector4}!w@{w}} +\index{w@{w}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{w}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector4::w () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_a7923533d63230c6a7d32f5e0942e4542} + + + vector4.hpp の 66 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_aa88d83b270e30ae8ad19e647b730104f}{ +\index{mof::math::vector4@{mof::math::vector4}!w@{w}} +\index{w@{w}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{w}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector4::w ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_aa88d83b270e30ae8ad19e647b730104f} + + + vector4.hpp の 65 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_aef4a9fbbc6727278c93f61901ca17d2d}{ +\index{mof::math::vector4@{mof::math::vector4}!x@{x}} +\index{x@{x}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{x}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector4::x () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_aef4a9fbbc6727278c93f61901ca17d2d} + + + vector4.hpp の 57 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_ab9b04199f8c134cb16554df61fbb610c}{ +\index{mof::math::vector4@{mof::math::vector4}!x@{x}} +\index{x@{x}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{x}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector4::x ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_ab9b04199f8c134cb16554df61fbb610c} + + + vector4.hpp の 56 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_ab796e0062995e579377682d9c47437f4}{ +\index{mof::math::vector4@{mof::math::vector4}!y@{y}} +\index{y@{y}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{y}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector4::y () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_ab796e0062995e579377682d9c47437f4} + + + vector4.hpp の 60 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_ad4e2ea273544c546fa66c401679f426f}{ +\index{mof::math::vector4@{mof::math::vector4}!y@{y}} +\index{y@{y}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{y}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector4::y ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_ad4e2ea273544c546fa66c401679f426f} + + + vector4.hpp の 59 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_a2d65265cc9e5b74c9695b77c12a55077}{ +\index{mof::math::vector4@{mof::math::vector4}!z@{z}} +\index{z@{z}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{z}]{\setlength{\rightskip}{0pt plus 5cm}const {\bf real}\& mof::math::vector4::z () const\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_a2d65265cc9e5b74c9695b77c12a55077} + + + vector4.hpp の 63 行で定義されています。\hypertarget{classmof_1_1math_1_1vector4_a13501125053e6676335db8420218ee59}{ +\index{mof::math::vector4@{mof::math::vector4}!z@{z}} +\index{z@{z}!mof::math::vector4@{mof::math::vector4}} +\subsubsection[{z}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real}\& mof::math::vector4::z ()\hspace{0.3cm}{\ttfamily \mbox{[}inline\mbox{]}}}} +\label{classmof_1_1math_1_1vector4_a13501125053e6676335db8420218ee59} + + + vector4.hpp の 62 行で定義されています。 + +このクラスの説明は次のファイルから生成されました:\begin{DoxyCompactItemize} +\item +mof/math/\hyperlink{vector4_8hpp}{vector4.hpp}\end{DoxyCompactItemize} diff --git a/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.eps b/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.eps new file mode 100644 index 0000000..753ddeb --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.eps @@ -0,0 +1,408 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 1146 566 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 1110 530 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 502 0 moveto +502 206 lineto +601 206 lineto +601 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 0 moveto +502 206 lineto +601 206 lineto +601 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 193 moveto 83 (mof::math::vector4) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 184 moveto +601 184 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 171 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 162 moveto +601 162 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 149 moveto 47 (+ vector4\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 135 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 121 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 107 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 93 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 79 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 65 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 51 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 37 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 23 moveto 22 (+ w\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 9 moveto 22 (+ w\(\)) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 460 242 642 420 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 460 242 moveto +460 420 lineto +643 420 lineto +643 242 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 242 moveto +460 420 lineto +643 420 lineto +643 242 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 407 moveto 167 (mof::math::basic_vector< 4, vector4 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 398 moveto +643 398 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 385 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 376 moveto +643 376 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 363 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 349 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 335 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 321 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 307 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 293 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 279 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 265 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 251 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node2->Node1 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 551 232 moveto +551 223 551 215 551 206 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 547.5 232 moveto +551 242 lineto +554.5 232 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 0 456 1102 522 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classboost_1_1addable.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 456 moveto +0 522 lineto +1102 522 lineto +1102 456 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 456 moveto +0 522 lineto +1102 522 lineto +1102 456 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +8 509 moveto 1086 (boost::addable< vector4 , boost::addable2< vector4 , real , boost::subtractable< vector4 , boost::subtractable2< vector4 , real , boost::multipliable2< vector4 , real , boost::dividable2< vector4 , real , boost::equality_comparable< vector4 > > > > > > >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 500 moveto +1102 500 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 487 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 478 moveto +1102 478 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 465 moveto 3 ( ) alignedtext +grestore +% Node3->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 551 446 moveto +551 438 551 429 551 420 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 547.5 446 moveto +551 456 lineto +554.5 446 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 1146 566 +end +restore +%%EOF diff --git a/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.md5 b/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.md5 new file mode 100644 index 0000000..58ee5cf --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.md5 @@ -0,0 +1 @@ +4cdd0265d858b67706334459bb1c6376 \ No newline at end of file diff --git a/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.pdf b/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.pdf new file mode 100644 index 0000000..843e341 Binary files /dev/null and b/src/doc/latex/classmof_1_1math_1_1vector4__coll__graph.pdf differ diff --git a/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.eps b/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.eps new file mode 100644 index 0000000..753ddeb --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.eps @@ -0,0 +1,408 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Graphviz version 2.20.2 (Wed Sep 16 11:12:11 UTC 2009) +%%For: (yasutomo) yasutomo,,, +%%Title: G +%%Pages: (atend) +%%BoundingBox: (atend) +%%EndComments +save +%%BeginProlog +/DotDict 200 dict def +DotDict begin + +/setupLatin1 { +mark +/EncodingVector 256 array def + EncodingVector 0 + +ISOLatin1Encoding 0 255 getinterval putinterval +EncodingVector 45 /hyphen put + +% Set up ISO Latin 1 character encoding +/starnetISO { + dup dup findfont dup length dict begin + { 1 index /FID ne { def }{ pop pop } ifelse + } forall + /Encoding EncodingVector def + currentdict end definefont +} def +/Times-Roman starnetISO def +/Times-Italic starnetISO def +/Times-Bold starnetISO def +/Times-BoldItalic starnetISO def +/Helvetica starnetISO def +/Helvetica-Oblique starnetISO def +/Helvetica-Bold starnetISO def +/Helvetica-BoldOblique starnetISO def +/Courier starnetISO def +/Courier-Oblique starnetISO def +/Courier-Bold starnetISO def +/Courier-BoldOblique starnetISO def +cleartomark +} bind def + +%%BeginResource: procset graphviz 0 0 +/coord-font-family /Times-Roman def +/default-font-family /Times-Roman def +/coordfont coord-font-family findfont 8 scalefont def + +/InvScaleFactor 1.0 def +/set_scale { + dup 1 exch div /InvScaleFactor exch def + scale +} bind def + +% styles +/solid { [] 0 setdash } bind def +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def +/bold { 2 setlinewidth } bind def +/filled { } bind def +/unfilled { } bind def +/rounded { } bind def +/diagonals { } bind def + +% hooks for setting color +/nodecolor { sethsbcolor } bind def +/edgecolor { sethsbcolor } bind def +/graphcolor { sethsbcolor } bind def +/nopcolor {pop pop pop} bind def + +/beginpage { % i j npages + /npages exch def + /j exch def + /i exch def + /str 10 string def + npages 1 gt { + gsave + coordfont setfont + 0 0 moveto + (\() show i str cvs show (,) show j str cvs show (\)) show + grestore + } if +} bind def + +/set_font { + findfont exch + scalefont setfont +} def + +% draw text fitted to its expected width +/alignedtext { % width text + /text exch def + /width exch def + gsave + width 0 gt { + [] 0 setdash + text stringwidth pop width exch sub text length div 0 text ashow + } if + grestore +} def + +/boxprim { % xcorner ycorner xsize ysize + 4 2 roll + moveto + 2 copy + exch 0 rlineto + 0 exch rlineto + pop neg 0 rlineto + closepath +} bind def + +/ellipse_path { + /ry exch def + /rx exch def + /y exch def + /x exch def + matrix currentmatrix + newpath + x y translate + rx ry scale + 0 0 1 0 360 arc + setmatrix +} bind def + +/endpage { showpage } bind def +/showpage { } def + +/layercolorseq + [ % layer color sequence - darkest to lightest + [0 0 0] + [.2 .8 .8] + [.4 .8 .8] + [.6 .8 .8] + [.8 .8 .8] + ] +def + +/layerlen layercolorseq length def + +/setlayer {/maxlayer exch def /curlayer exch def + layercolorseq curlayer 1 sub layerlen mod get + aload pop sethsbcolor + /nodecolor {nopcolor} def + /edgecolor {nopcolor} def + /graphcolor {nopcolor} def +} bind def + +/onlayer { curlayer ne {invis} if } def + +/onlayers { + /myupper exch def + /mylower exch def + curlayer mylower lt + curlayer myupper gt + or + {invis} if +} def + +/curlayer 0 def + +%%EndResource +%%EndProlog +%%BeginSetup +14 default-font-family set_font +1 setmiterlimit +% /arrowlength 10 def +% /arrowwidth 5 def + +% make sure pdfmark is harmless for PS-interpreters other than Distiller +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse +% make '<<' and '>>' safe on PS Level 1 devices +/languagelevel where {pop languagelevel}{1} ifelse +2 lt { + userdict (<<) cvn ([) cvn load put + userdict (>>) cvn ([) cvn load put +} if + +%%EndSetup +setupLatin1 +%%Page: 1 1 +%%PageBoundingBox: 36 36 1146 566 +%%PageOrientation: Portrait +0 0 1 beginpage +gsave +36 36 1110 530 boxprim clip newpath +1 1 set_scale 0 rotate 40 40 translate +% Node1 +gsave +0.000 0.000 0.749 nodecolor +newpath 502 0 moveto +502 206 lineto +601 206 lineto +601 0 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 0 moveto +502 206 lineto +601 206 lineto +601 0 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 193 moveto 83 (mof::math::vector4) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 184 moveto +601 184 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 171 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 502 162 moveto +601 162 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 149 moveto 47 (+ vector4\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 135 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 121 moveto 47 (+ vector3\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 107 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 93 moveto 20 (+ x\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 79 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 65 moveto 20 (+ y\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 51 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 37 moveto 20 (+ z\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 23 moveto 22 (+ w\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +509.5 9 moveto 22 (+ w\(\)) alignedtext +grestore +% Node2 +gsave +[ /Rect [ 460 242 642 420 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classmof_1_1math_1_1basic__vector.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 460 242 moveto +460 420 lineto +643 420 lineto +643 242 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 242 moveto +460 420 lineto +643 420 lineto +643 242 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 407 moveto 167 (mof::math::basic_vector< 4, vector4 >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 398 moveto +643 398 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 385 moveto 65 (- components_) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 460 376 moveto +643 376 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 363 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 349 moveto 62 (+ operator+=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 335 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 321 moveto 59 (+ operator-=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 307 moveto 60 (+ operator*=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 293 moveto 59 (+ operator/=\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 279 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 265 moveto 56 (+ operator[]\(\)) alignedtext +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +467.5 251 moveto 62 (+ operator==\(\)) alignedtext +grestore +% Node2->Node1 +gsave +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 551 232 moveto +551 223 551 215 551 206 curveto +stroke +1 setlinewidth +solid +0.667 0.776 0.439 edgecolor +newpath 547.5 232 moveto +551 242 lineto +554.5 232 lineto +closepath stroke +grestore +% Node3 +gsave +[ /Rect [ 0 456 1102 522 ] + /Border [ 0 0 0 ] + /Action << /Subtype /URI /URI ($classboost_1_1addable.html) >> + /Subtype /Link +/ANN pdfmark +0.000 0.000 1.000 nodecolor +newpath 0 456 moveto +0 522 lineto +1102 522 lineto +1102 456 lineto +closepath fill +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 456 moveto +0 522 lineto +1102 522 lineto +1102 456 lineto +closepath stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +8 509 moveto 1086 (boost::addable< vector4 , boost::addable2< vector4 , real , boost::subtractable< vector4 , boost::subtractable2< vector4 , real , boost::multipliable2< vector4 , real , boost::dividable2< vector4 , real , boost::equality_comparable< vector4 > > > > > > >) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 500 moveto +1102 500 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 487 moveto 3 ( ) alignedtext +1 setlinewidth +filled +0.000 0.000 0.000 nodecolor +newpath 0 478 moveto +1102 478 lineto +stroke +0.000 0.000 0.000 nodecolor +10 /FreeSans set_font +549.5 465 moveto 3 ( ) alignedtext +grestore +% Node3->Node2 +gsave +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 551 446 moveto +551 438 551 429 551 420 curveto +stroke +1 setlinewidth +solid +0.000 0.812 0.545 edgecolor +newpath 547.5 446 moveto +551 456 lineto +554.5 446 lineto +closepath stroke +grestore +endpage +showpage +grestore +%%PageTrailer +%%EndPage: 1 +%%Trailer +%%Pages: 1 +%%BoundingBox: 36 36 1146 566 +end +restore +%%EOF diff --git a/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.md5 b/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.md5 new file mode 100644 index 0000000..58ee5cf --- /dev/null +++ b/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.md5 @@ -0,0 +1 @@ +4cdd0265d858b67706334459bb1c6376 \ No newline at end of file diff --git a/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.pdf b/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.pdf new file mode 100644 index 0000000..ca52507 Binary files /dev/null and b/src/doc/latex/classmof_1_1math_1_1vector4__inherit__graph.pdf differ diff --git a/src/doc/latex/doxygen.sty b/src/doc/latex/doxygen.sty new file mode 100644 index 0000000..6515592 --- /dev/null +++ b/src/doc/latex/doxygen.sty @@ -0,0 +1,351 @@ +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{doxygen} + +% Packages used by this style file +\RequirePackage{alltt} +\RequirePackage{array} +\RequirePackage{calc} +\RequirePackage{color} +\RequirePackage{fancyhdr} +\RequirePackage{verbatim} + +% Setup fancy headings +\pagestyle{fancyplain} +\newcommand{\clearemptydoublepage}{% + \newpage{\pagestyle{empty}\cleardoublepage}% +} +\renewcommand{\chaptermark}[1]{% + \markboth{#1}{}% +} +\renewcommand{\sectionmark}[1]{% + \markright{\thesection\ #1}% +} +\lhead[\fancyplain{}{\bfseries\thepage}]{% + \fancyplain{}{\bfseries\rightmark}% +} +\rhead[\fancyplain{}{\bfseries\leftmark}]{% + \fancyplain{}{\bfseries\thepage}% +} +\rfoot[\fancyplain{}{\bfseries\scriptsize% + MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。 Doxygen }]{} +\lfoot[]{\fancyplain{}{\bfseries\scriptsize% + MotifOfFunctionsLIBraryに対してFri Apr 16 10:25:29 2010に生成されました。 Doxygen }} +\cfoot{} + +%---------- Internal commands used in this style file ---------------- + +% Generic environment used by all paragraph-based environments defined +% below. Note that the command \title{...} needs to be defined inside +% those environments! +\newenvironment{DoxyDesc}[1]{% + \begin{list}{}% + {% + \settowidth{\labelwidth}{40pt}% + \setlength{\leftmargin}{\labelwidth}% + \setlength{\parsep}{0pt}% + \setlength{\itemsep}{-4pt}% + \renewcommand{\makelabel}{\entrylabel}% + }% + \item[#1:]% +}{% + \end{list}% +} + +%---------- Commands used by doxygen LaTeX output generator ---------- + +% Used by
 ... 
+\newenvironment{DoxyPre}{% + \small% + \begin{alltt}% +}{% + \end{alltt}% + \normalsize% +} + +% Used by @code ... @endcode +\newenvironment{DoxyCode}{% + \footnotesize% + \verbatim% +}{% + \endverbatim% + \normalsize% +} + +% Used by @example, @include, @includelineno and @dontinclude +\newenvironment{DoxyCodeInclude}{% + \DoxyCode% +}{% + \endDoxyCode% +} + +% Used by @verbatim ... @endverbatim +\newenvironment{DoxyVerb}{% + \footnotesize% + \verbatim% +}{% + \endverbatim% + \normalsize% +} + +% Used by @verbinclude +\newenvironment{DoxyVerbInclude}{% + \DoxyVerb% +}{% + \endDoxyVerb% +} + +% Used by numbered lists (using '-#' or
    ...
) +\newenvironment{DoxyEnumerate}{% + \enumerate% +}{% + \endenumerate% +} + +% Used by bullet lists (using '-', @li, @arg, or
    ...
) +\newenvironment{DoxyItemize}{% + \itemize% +}{% + \enditemize% +} + +% Used by description lists (using
...
) +\newenvironment{DoxyDescription}{% + \description% +}{% + \enddescription% +} + +% Used by @image, @dotfile, and @dot ... @enddot +% (only if caption is specified) +\newenvironment{DoxyImage}{% + \begin{figure}[H]% + \begin{center}% +}{% + \end{center}% + \end{figure}% +} + +% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc +% (only if no caption is specified) +\newenvironment{DoxyImageNoCaption}{% +}{% +} + +% Used by @attention +\newenvironment{DoxyAttention}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @author and @authors +\newenvironment{DoxyAuthor}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @date +\newenvironment{DoxyDate}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @invariant +\newenvironment{DoxyInvariant}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @note +\newenvironment{DoxyNote}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @post +\newenvironment{DoxyPostcond}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @pre +\newenvironment{DoxyPrecond}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @remark +\newenvironment{DoxyRemark}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @return +\newenvironment{DoxyReturn}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @since +\newenvironment{DoxySince}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @see +\newenvironment{DoxySeeAlso}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @version +\newenvironment{DoxyVersion}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @warning +\newenvironment{DoxyWarning}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @internal +\newenvironment{DoxyInternal}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @par and @paragraph +\newenvironment{DoxyParagraph}[1]{% + \begin{list}{}% + {% + \settowidth{\labelwidth}{40pt}% + \setlength{\leftmargin}{\labelwidth}% + \setlength{\parsep}{0pt}% + \setlength{\itemsep}{-4pt}% + \renewcommand{\makelabel}{\entrylabel}% + }% + \item[#1]% +}{% + \end{list}% +} + +% Used by parameter lists +\newenvironment{DoxyParams}[1]{% + \begin{DoxyDesc}{#1}% + \begin{description}% +}{% + \end{description}% + \end{DoxyDesc}% +} + +% Used by return value lists +\newenvironment{DoxyRetVals}[1]{% + \begin{DoxyDesc}{#1}% + \begin{description}% +}{% + \end{description}% + \end{DoxyDesc}% +} + +% Used by exception lists +\newenvironment{DoxyExceptions}[1]{% + \begin{DoxyDesc}{#1}% + \begin{description}% +}{% + \end{description}% + \end{DoxyDesc}% +} + +% Used by template parameter lists +\newenvironment{DoxyTemplParams}[1]{% + \begin{DoxyDesc}{#1}% + \begin{description}% +}{% + \end{description}% + \end{DoxyDesc}% +} + +\newcommand{\doxyref}[3]{\textbf{#1} (\textnormal{#2}\,\pageref{#3})} +\newenvironment{DoxyCompactList} +{\begin{list}{}{ + \setlength{\leftmargin}{0.5cm} + \setlength{\itemsep}{0pt} + \setlength{\parsep}{0pt} + \setlength{\topsep}{0pt} + \renewcommand{\makelabel}{\hfill}}} +{\end{list}} +\newenvironment{DoxyCompactItemize} +{ + \begin{itemize} + \setlength{\itemsep}{-3pt} + \setlength{\parsep}{0pt} + \setlength{\topsep}{0pt} + \setlength{\partopsep}{0pt} +} +{\end{itemize}} +\newcommand{\PBS}[1]{\let\temp=\\#1\let\\=\temp} +\newlength{\tmplength} +\newenvironment{TabularC}[1] +{ +\setlength{\tmplength} + {\linewidth/(#1)-\tabcolsep*2-\arrayrulewidth*(#1+1)/(#1)} + \par\begin{tabular*}{\linewidth} + {*{#1}{|>{\PBS\raggedright\hspace{0pt}}p{\the\tmplength}}|} +} +{\end{tabular*}\par} +\newcommand{\entrylabel}[1]{ + {\parbox[b]{\labelwidth-4pt}{\makebox[0pt][l]{\textbf{#1}}\vspace{1.5\baselineskip}}}} +\newenvironment{Desc} +{\begin{list}{} + { + \settowidth{\labelwidth}{40pt} + \setlength{\leftmargin}{\labelwidth} + \setlength{\parsep}{0pt} + \setlength{\itemsep}{-4pt} + \renewcommand{\makelabel}{\entrylabel} + } +} +{\end{list}} +\newenvironment{Indent} + {\begin{list}{}{\setlength{\leftmargin}{0.5cm}} + \item[]\ignorespaces} + {\unskip\end{list}} +\setlength{\parindent}{0cm} +\setlength{\parskip}{0.2cm} +\addtocounter{secnumdepth}{1} +\sloppy +\usepackage[T1]{fontenc} +\makeatletter +\renewcommand{\paragraph}{\@startsection{paragraph}{4}{0ex}% + {-3.25ex plus -1ex minus -0.2ex}% + {1.5ex plus 0.2ex}% + {\normalfont\normalsize\bfseries}} +\makeatother +\stepcounter{secnumdepth} +\stepcounter{tocdepth} +\definecolor{comment}{rgb}{0.5,0.0,0.0} +\definecolor{keyword}{rgb}{0.0,0.5,0.0} +\definecolor{keywordtype}{rgb}{0.38,0.25,0.125} +\definecolor{keywordflow}{rgb}{0.88,0.5,0.0} +\definecolor{preprocessor}{rgb}{0.5,0.38,0.125} +\definecolor{stringliteral}{rgb}{0.0,0.125,0.25} +\definecolor{charliteral}{rgb}{0.0,0.5,0.5} +\definecolor{vhdldigit}{rgb}{1.0,0.0,1.0} +\definecolor{vhdlkeyword}{rgb}{0.43,0.0,0.43} +\definecolor{vhdllogic}{rgb}{1.0,0.0,0.0} +\definecolor{vhdlchar}{rgb}{0.0,0.0,0.0} diff --git a/src/doc/latex/files.tex b/src/doc/latex/files.tex new file mode 100644 index 0000000..9e02563 --- /dev/null +++ b/src/doc/latex/files.tex @@ -0,0 +1,11 @@ +\section{ファイル一覧} +これはファイル一覧です。\begin{DoxyCompactList} +\item\contentsline{section}{mof/base/\hyperlink{mofdef_8hpp}{mofdef.hpp} }{\pageref{mofdef_8hpp}}{} +\item\contentsline{section}{mof/base/\hyperlink{tstring_8hpp}{tstring.hpp} }{\pageref{tstring_8hpp}}{} +\item\contentsline{section}{mof/math/\hyperlink{basic__vector_8hpp}{basic\_\-vector.hpp} }{\pageref{basic__vector_8hpp}}{} +\item\contentsline{section}{mof/math/\hyperlink{vector_8hpp}{vector.hpp} }{\pageref{vector_8hpp}}{} +\item\contentsline{section}{mof/math/\hyperlink{vector2_8hpp}{vector2.hpp} }{\pageref{vector2_8hpp}}{} +\item\contentsline{section}{mof/math/\hyperlink{vector3_8hpp}{vector3.hpp} }{\pageref{vector3_8hpp}}{} +\item\contentsline{section}{mof/math/\hyperlink{vector4_8hpp}{vector4.hpp} }{\pageref{vector4_8hpp}}{} +\item\contentsline{section}{mof/util/\hyperlink{foreach_8hpp}{foreach.hpp} }{\pageref{foreach_8hpp}}{} +\end{DoxyCompactList} diff --git a/src/doc/latex/foreach_8hpp.tex b/src/doc/latex/foreach_8hpp.tex new file mode 100644 index 0000000..acbdc41 --- /dev/null +++ b/src/doc/latex/foreach_8hpp.tex @@ -0,0 +1,20 @@ +\hypertarget{foreach_8hpp}{ +\section{mof/util/foreach.hpp} +\label{foreach_8hpp}\index{mof/util/foreach.hpp@{mof/util/foreach.hpp}} +} +\subsection*{マクロ定義} +\begin{DoxyCompactItemize} +\item +\#define \hyperlink{foreach_8hpp_a85d9ac269eba33293361f4ed7c2a697b}{foreach}~BOOST\_\-FOREACH +\end{DoxyCompactItemize} + + +\subsection{マクロ定義} +\hypertarget{foreach_8hpp_a85d9ac269eba33293361f4ed7c2a697b}{ +\index{foreach.hpp@{foreach.hpp}!foreach@{foreach}} +\index{foreach@{foreach}!foreach.hpp@{foreach.hpp}} +\subsubsection[{foreach}]{\setlength{\rightskip}{0pt plus 5cm}\#define foreach~BOOST\_\-FOREACH}} +\label{foreach_8hpp_a85d9ac269eba33293361f4ed7c2a697b} + + + foreach.hpp の 3 行で定義されています。 \ No newline at end of file diff --git a/src/doc/latex/hierarchy.tex b/src/doc/latex/hierarchy.tex new file mode 100644 index 0000000..951af77 --- /dev/null +++ b/src/doc/latex/hierarchy.tex @@ -0,0 +1,19 @@ +\section{クラス階層} +この継承一覧はおおまかにはソートされていますが、完全にアルファベット順でソートされてはいません。\begin{DoxyCompactList} +\item \contentsline{section}{addable}{\pageref{classboost_1_1addable}}{} +\begin{DoxyCompactList} +\item \contentsline{section}{mof::math::basic\_\-vector$<$ 2, vector2 $>$}{\pageref{classmof_1_1math_1_1basic__vector}}{} +\begin{DoxyCompactList} +\item \contentsline{section}{mof::math::vector2}{\pageref{classmof_1_1math_1_1vector2}}{} +\end{DoxyCompactList} +\item \contentsline{section}{mof::math::basic\_\-vector$<$ 3, vector3 $>$}{\pageref{classmof_1_1math_1_1basic__vector}}{} +\begin{DoxyCompactList} +\item \contentsline{section}{mof::math::vector3}{\pageref{classmof_1_1math_1_1vector3}}{} +\end{DoxyCompactList} +\item \contentsline{section}{mof::math::basic\_\-vector$<$ 4, vector4 $>$}{\pageref{classmof_1_1math_1_1basic__vector}}{} +\begin{DoxyCompactList} +\item \contentsline{section}{mof::math::vector4}{\pageref{classmof_1_1math_1_1vector4}}{} +\end{DoxyCompactList} +\end{DoxyCompactList} +\item \contentsline{section}{mof::math::basic\_\-vector$<$ Dim, Derived $>$}{\pageref{classmof_1_1math_1_1basic__vector}}{} +\end{DoxyCompactList} diff --git a/src/doc/latex/mofdef_8hpp.tex b/src/doc/latex/mofdef_8hpp.tex new file mode 100644 index 0000000..9247ea7 --- /dev/null +++ b/src/doc/latex/mofdef_8hpp.tex @@ -0,0 +1,14 @@ +\hypertarget{mofdef_8hpp}{ +\section{mof/base/mofdef.hpp} +\label{mofdef_8hpp}\index{mof/base/mofdef.hpp@{mof/base/mofdef.hpp}} +} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof}{mof} +\end{DoxyCompactItemize} +\subsection*{型定義} +\begin{DoxyCompactItemize} +\item +typedef float \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{mof::real} +\end{DoxyCompactItemize} diff --git a/src/doc/latex/namespacemof.tex b/src/doc/latex/namespacemof.tex new file mode 100644 index 0000000..45a3846 --- /dev/null +++ b/src/doc/latex/namespacemof.tex @@ -0,0 +1,34 @@ +\hypertarget{namespacemof}{ +\section{ネームスペース mof} +\label{namespacemof}\index{mof@{mof}} +} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof_1_1math}{math} +\end{DoxyCompactItemize} +\subsection*{型定義} +\begin{DoxyCompactItemize} +\item +typedef float \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} +\item +typedef std::basic\_\-string$<$ TCHAR $>$ \hyperlink{namespacemof_ac5bfa05fda9898bdc5f163179389d944}{tstring} +\end{DoxyCompactItemize} + + +\subsection{型定義} +\hypertarget{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{ +\index{mof@{mof}!real@{real}} +\index{real@{real}!mof@{mof}} +\subsubsection[{real}]{\setlength{\rightskip}{0pt plus 5cm}typedef float {\bf mof::real}}} +\label{namespacemof_a5389bf2f9597bc92a1fd304d1c083421} + + + mofdef.hpp の 7 行で定義されています。\hypertarget{namespacemof_ac5bfa05fda9898bdc5f163179389d944}{ +\index{mof@{mof}!tstring@{tstring}} +\index{tstring@{tstring}!mof@{mof}} +\subsubsection[{tstring}]{\setlength{\rightskip}{0pt plus 5cm}typedef std::basic\_\-string$<$TCHAR$>$ {\bf mof::tstring}}} +\label{namespacemof_ac5bfa05fda9898bdc5f163179389d944} + + + tstring.hpp の 12 行で定義されています。 \ No newline at end of file diff --git a/src/doc/latex/namespacemof_1_1math.tex b/src/doc/latex/namespacemof_1_1math.tex new file mode 100644 index 0000000..52b4ea6 --- /dev/null +++ b/src/doc/latex/namespacemof_1_1math.tex @@ -0,0 +1,15 @@ +\hypertarget{namespacemof_1_1math}{ +\section{ネームスペース mof::math} +\label{namespacemof_1_1math}\index{mof::math@{mof::math}} +} +\subsection*{構成} +\begin{DoxyCompactItemize} +\item +class \hyperlink{classmof_1_1math_1_1basic__vector}{basic\_\-vector} +\begin{DoxyCompactList}\small\item\em 基底ベクトルテンプレートクラス \item\end{DoxyCompactList}\item +class \hyperlink{classmof_1_1math_1_1vector2}{vector2} +\begin{DoxyCompactList}\small\item\em 2次元ベクトルクラス \item\end{DoxyCompactList}\item +class \hyperlink{classmof_1_1math_1_1vector3}{vector3} +\begin{DoxyCompactList}\small\item\em 3次元ベクトルクラス \item\end{DoxyCompactList}\item +class \hyperlink{classmof_1_1math_1_1vector4}{vector4} +\begin{DoxyCompactList}\small\item\em 4次元ベクトルクラス \item\end{DoxyCompactList}\end{DoxyCompactItemize} diff --git a/src/doc/latex/namespaces.tex b/src/doc/latex/namespaces.tex new file mode 100644 index 0000000..74948b5 --- /dev/null +++ b/src/doc/latex/namespaces.tex @@ -0,0 +1,5 @@ +\section{ネームスペース一覧} +ネームスペースの一覧です。\begin{DoxyCompactList} +\item\contentsline{section}{\hyperlink{namespacemof}{mof} }{\pageref{namespacemof}}{} +\item\contentsline{section}{\hyperlink{namespacemof_1_1math}{mof::math} }{\pageref{namespacemof_1_1math}}{} +\end{DoxyCompactList} diff --git a/src/doc/latex/refman.tex b/src/doc/latex/refman.tex new file mode 100644 index 0000000..0938858 --- /dev/null +++ b/src/doc/latex/refman.tex @@ -0,0 +1,80 @@ +\documentclass[a4paper]{book} +\usepackage{a4wide} +\usepackage{makeidx} +\usepackage{graphicx} +\usepackage{multicol} +\usepackage{float} +\usepackage{listings} +\usepackage{color} +\usepackage{textcomp} +\usepackage{alltt} +\usepackage{times} +\usepackage{ifpdf} +\ifpdf +\usepackage[pdftex, + pagebackref=true, + colorlinks=true, + linkcolor=blue, + unicode + ]{hyperref} +\else +\usepackage[ps2pdf, + pagebackref=true, + colorlinks=true, + linkcolor=blue, + unicode + ]{hyperref} +\usepackage{pspicture} +\fi +\usepackage[utf8]{inputenc} +\usepackage{doxygen} +\lstset{language=C++,inputencoding=utf8,basicstyle=\footnotesize,breaklines=true,breakatwhitespace=true,tabsize=4,numbers=left } +\makeindex +\setcounter{tocdepth}{3} +\renewcommand{\footrulewidth}{0.4pt} +\begin{document} +\hypersetup{pageanchor=false} +\begin{titlepage} +\vspace*{7cm} +\begin{center} +{\Large MotifOfFunctionsLIBrary }\\ +\vspace*{1cm} +{\large 作成: Doxygen 1.6.1}\\ +\vspace*{0.5cm} +{\small Fri Apr 16 10:25:29 2010}\\ +\end{center} +\end{titlepage} +\clearemptydoublepage +\pagenumbering{roman} +\tableofcontents +\clearemptydoublepage +\pagenumbering{arabic} +\hypersetup{pageanchor=true} +\chapter{ネームスペース索引} +\input{namespaces} +\chapter{構成索引} +\input{hierarchy} +\chapter{構成索引} +\input{annotated} +\chapter{ファイル索引} +\input{files} +\chapter{ネームスペース} +\input{namespacemof} +\include{namespacemof_1_1math} +\chapter{クラス} +\input{classboost_1_1addable} +\include{classmof_1_1math_1_1basic__vector} +\include{classmof_1_1math_1_1vector2} +\include{classmof_1_1math_1_1vector3} +\include{classmof_1_1math_1_1vector4} +\chapter{ファイル} +\input{mofdef_8hpp} +\include{tstring_8hpp} +\include{basic__vector_8hpp} +\include{vector_8hpp} +\include{vector2_8hpp} +\include{vector3_8hpp} +\include{vector4_8hpp} +\include{foreach_8hpp} +\printindex +\end{document} diff --git a/src/doc/latex/structmof_1_1Vector2D.tex b/src/doc/latex/structmof_1_1Vector2D.tex new file mode 100644 index 0000000..85b7544 --- /dev/null +++ b/src/doc/latex/structmof_1_1Vector2D.tex @@ -0,0 +1,176 @@ +\hypertarget{structmof_1_1Vector2D}{ +\section{構造体 mof::Vector2D} +\label{structmof_1_1Vector2D}\index{mof::Vector2D@{mof::Vector2D}} +} + + +{\ttfamily \#include $<$Vector2D.hpp$>$}\subsection*{Public メソッド} +\begin{DoxyCompactItemize} +\item +\hyperlink{structmof_1_1Vector2D_ab92ac29eef4252a8f1d25af1251e8515}{Vector2D} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} x\_\-, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} y\_\-) +\item +\hyperlink{structmof_1_1Vector2D_a79bb81282ea309b726a23cbd98306f65}{Vector2D} (int x\_\-, int y\_\-) +\item +\hyperlink{structmof_1_1Vector2D_a5dba11b6f10b97f92e6a79afd7b54c77}{Vector2D} () +\item +\hyperlink{structmof_1_1Vector2D_ab7598396d443afe74a1b25d311aa52b9}{$\sim$Vector2D} (void) +\item +\hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \hyperlink{structmof_1_1Vector2D_a3ba38e47408d2f2c1bfaffb59df388a8}{operator+} (const \hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \&rhs) const +\item +\hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \hyperlink{structmof_1_1Vector2D_ade87f5fede7808ddd993ef792d9b2010}{operator-\/} (const \hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \&rhs) const +\item +\hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \hyperlink{structmof_1_1Vector2D_a5cd2201233e48e9ca32bbb50159614ca}{operator$\ast$} (float rhs) const +\item +\hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \hyperlink{structmof_1_1Vector2D_a8c3595cff7a0b59b724a81c329cae7c7}{operator/} (float rhs) const +\item +bool \hyperlink{structmof_1_1Vector2D_a4e459ac99c373ca05ee1d3c676fb78ab}{operator==} (const \hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \&obj) const +\item +bool \hyperlink{structmof_1_1Vector2D_a8aa45d68ee6311dae7e2cf14542496a2}{operator!=} (const \hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \&obj) const +\item +\hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \hyperlink{structmof_1_1Vector2D_acab586a192a479ea757dda9bf1bda27a}{operator-\/} () const +\end{DoxyCompactItemize} +\subsection*{Public 変数} +\begin{DoxyCompactItemize} +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \hyperlink{structmof_1_1Vector2D_a6bf6819566f049e17e80d496930ce615}{x} +\item +\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} \hyperlink{structmof_1_1Vector2D_ae80f9bdf52e62c7285d79bcd10f864e7}{y} +\end{DoxyCompactItemize} +\subsection*{フレンド} +\begin{DoxyCompactItemize} +\item +\hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \hyperlink{structmof_1_1Vector2D_a101fba9bdfe5db87dd1c4acb728fb786}{operator$\ast$} (const \hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \&vec, \hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} f) +\item +\hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \hyperlink{structmof_1_1Vector2D_a3aedbcc9b93bf4334152717d80476a49}{operator$\ast$} (\hyperlink{namespacemof_a5389bf2f9597bc92a1fd304d1c083421}{real} f, const \hyperlink{structmof_1_1Vector2D}{mof::Vector2D} \&vec) +\item +std::ostream \& \hyperlink{structmof_1_1Vector2D_ac6de893da3fc3738a3978776979e6714}{operator$<$$<$} (std::ostream \&os, const \hyperlink{structmof_1_1Vector2D}{Vector2D} \&obj) +\end{DoxyCompactItemize} + + +\subsection{説明} + + + Vector2D.hpp の 8 行で定義されています。 + +\subsection{コンストラクタとデストラクタ} +\hypertarget{structmof_1_1Vector2D_ab92ac29eef4252a8f1d25af1251e8515}{ +\index{mof::Vector2D@{mof::Vector2D}!Vector2D@{Vector2D}} +\index{Vector2D@{Vector2D}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{Vector2D}]{\setlength{\rightskip}{0pt plus 5cm}mof::Vector2D::Vector2D ({\bf real} {\em x\_\-}, \/ {\bf real} {\em y\_\-})}} +\label{structmof_1_1Vector2D_ab92ac29eef4252a8f1d25af1251e8515} + + + Vector2D.cpp の 4 行で定義されています。\hypertarget{structmof_1_1Vector2D_a79bb81282ea309b726a23cbd98306f65}{ +\index{mof::Vector2D@{mof::Vector2D}!Vector2D@{Vector2D}} +\index{Vector2D@{Vector2D}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{Vector2D}]{\setlength{\rightskip}{0pt plus 5cm}mof::Vector2D::Vector2D (int {\em x\_\-}, \/ int {\em y\_\-})}} +\label{structmof_1_1Vector2D_a79bb81282ea309b726a23cbd98306f65} + + + Vector2D.cpp の 8 行で定義されています。\hypertarget{structmof_1_1Vector2D_a5dba11b6f10b97f92e6a79afd7b54c77}{ +\index{mof::Vector2D@{mof::Vector2D}!Vector2D@{Vector2D}} +\index{Vector2D@{Vector2D}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{Vector2D}]{\setlength{\rightskip}{0pt plus 5cm}mof::Vector2D::Vector2D ()}} +\label{structmof_1_1Vector2D_a5dba11b6f10b97f92e6a79afd7b54c77} + + + Vector2D.cpp の 13 行で定義されています。\hypertarget{structmof_1_1Vector2D_ab7598396d443afe74a1b25d311aa52b9}{ +\index{mof::Vector2D@{mof::Vector2D}!$\sim$Vector2D@{$\sim$Vector2D}} +\index{$\sim$Vector2D@{$\sim$Vector2D}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{$\sim$Vector2D}]{\setlength{\rightskip}{0pt plus 5cm}mof::Vector2D::$\sim$Vector2D (void)}} +\label{structmof_1_1Vector2D_ab7598396d443afe74a1b25d311aa52b9} + + + Vector2D.cpp の 17 行で定義されています。 + +\subsection{関数} +\hypertarget{structmof_1_1Vector2D_a8aa45d68ee6311dae7e2cf14542496a2}{ +\index{mof::Vector2D@{mof::Vector2D}!operator!=@{operator!=}} +\index{operator!=@{operator!=}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator!=}]{\setlength{\rightskip}{0pt plus 5cm}bool mof::Vector2D::operator!= (const {\bf mof::Vector2D} \& {\em obj}) const}} +\label{structmof_1_1Vector2D_a8aa45d68ee6311dae7e2cf14542496a2} + + + Vector2D.cpp の 27 行で定義されています。\hypertarget{structmof_1_1Vector2D_a5cd2201233e48e9ca32bbb50159614ca}{ +\index{mof::Vector2D@{mof::Vector2D}!operator$\ast$@{operator$\ast$}} +\index{operator$\ast$@{operator$\ast$}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator$\ast$}]{\setlength{\rightskip}{0pt plus 5cm}{\bf mof::Vector2D} mof::Vector2D::operator$\ast$ (float {\em rhs}) const}} +\label{structmof_1_1Vector2D_a5cd2201233e48e9ca32bbb50159614ca} + + + Vector2D.cpp の 46 行で定義されています。\hypertarget{structmof_1_1Vector2D_a3ba38e47408d2f2c1bfaffb59df388a8}{ +\index{mof::Vector2D@{mof::Vector2D}!operator+@{operator+}} +\index{operator+@{operator+}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator+}]{\setlength{\rightskip}{0pt plus 5cm}{\bf mof::Vector2D} mof::Vector2D::operator+ (const {\bf mof::Vector2D} \& {\em rhs}) const}} +\label{structmof_1_1Vector2D_a3ba38e47408d2f2c1bfaffb59df388a8} + + + Vector2D.cpp の 37 行で定義されています。\hypertarget{structmof_1_1Vector2D_acab586a192a479ea757dda9bf1bda27a}{ +\index{mof::Vector2D@{mof::Vector2D}!operator-\/@{operator-\/}} +\index{operator-\/@{operator-\/}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator-\/}]{\setlength{\rightskip}{0pt plus 5cm}{\bf mof::Vector2D} mof::Vector2D::operator-\/ () const}} +\label{structmof_1_1Vector2D_acab586a192a479ea757dda9bf1bda27a} + + + Vector2D.cpp の 31 行で定義されています。\hypertarget{structmof_1_1Vector2D_ade87f5fede7808ddd993ef792d9b2010}{ +\index{mof::Vector2D@{mof::Vector2D}!operator-\/@{operator-\/}} +\index{operator-\/@{operator-\/}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator-\/}]{\setlength{\rightskip}{0pt plus 5cm}{\bf mof::Vector2D} mof::Vector2D::operator-\/ (const {\bf mof::Vector2D} \& {\em rhs}) const}} +\label{structmof_1_1Vector2D_ade87f5fede7808ddd993ef792d9b2010} + + + Vector2D.cpp の 42 行で定義されています。\hypertarget{structmof_1_1Vector2D_a8c3595cff7a0b59b724a81c329cae7c7}{ +\index{mof::Vector2D@{mof::Vector2D}!operator/@{operator/}} +\index{operator/@{operator/}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator/}]{\setlength{\rightskip}{0pt plus 5cm}{\bf mof::Vector2D} mof::Vector2D::operator/ (float {\em rhs}) const}} +\label{structmof_1_1Vector2D_a8c3595cff7a0b59b724a81c329cae7c7} + + + Vector2D.cpp の 51 行で定義されています。\hypertarget{structmof_1_1Vector2D_a4e459ac99c373ca05ee1d3c676fb78ab}{ +\index{mof::Vector2D@{mof::Vector2D}!operator==@{operator==}} +\index{operator==@{operator==}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator==}]{\setlength{\rightskip}{0pt plus 5cm}bool mof::Vector2D::operator== (const {\bf mof::Vector2D} \& {\em obj}) const}} +\label{structmof_1_1Vector2D_a4e459ac99c373ca05ee1d3c676fb78ab} + + + Vector2D.cpp の 22 行で定義されています。 + +\subsection{フレンドと関連する関数} +\hypertarget{structmof_1_1Vector2D_a3aedbcc9b93bf4334152717d80476a49}{ +\index{mof::Vector2D@{mof::Vector2D}!operator$\ast$@{operator$\ast$}} +\index{operator$\ast$@{operator$\ast$}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator$\ast$}]{\setlength{\rightskip}{0pt plus 5cm}{\bf mof::Vector2D} operator$\ast$ ({\bf real} {\em f}, \/ const {\bf mof::Vector2D} \& {\em vec})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{structmof_1_1Vector2D_a3aedbcc9b93bf4334152717d80476a49} +\hypertarget{structmof_1_1Vector2D_a101fba9bdfe5db87dd1c4acb728fb786}{ +\index{mof::Vector2D@{mof::Vector2D}!operator$\ast$@{operator$\ast$}} +\index{operator$\ast$@{operator$\ast$}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator$\ast$}]{\setlength{\rightskip}{0pt plus 5cm}{\bf mof::Vector2D} operator$\ast$ (const {\bf mof::Vector2D} \& {\em vec}, \/ {\bf real} {\em f})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{structmof_1_1Vector2D_a101fba9bdfe5db87dd1c4acb728fb786} +\hypertarget{structmof_1_1Vector2D_ac6de893da3fc3738a3978776979e6714}{ +\index{mof::Vector2D@{mof::Vector2D}!operator$<$$<$@{operator$<$$<$}} +\index{operator$<$$<$@{operator$<$$<$}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{operator$<$$<$}]{\setlength{\rightskip}{0pt plus 5cm}std::ostream\& operator$<$$<$ (std::ostream \& {\em os}, \/ const {\bf Vector2D} \& {\em obj})\hspace{0.3cm}{\ttfamily \mbox{[}friend\mbox{]}}}} +\label{structmof_1_1Vector2D_ac6de893da3fc3738a3978776979e6714} + + +\subsection{変数} +\hypertarget{structmof_1_1Vector2D_a6bf6819566f049e17e80d496930ce615}{ +\index{mof::Vector2D@{mof::Vector2D}!x@{x}} +\index{x@{x}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{x}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real} {\bf mof::Vector2D::x}}} +\label{structmof_1_1Vector2D_a6bf6819566f049e17e80d496930ce615} + + + Vector2D.hpp の 10 行で定義されています。\hypertarget{structmof_1_1Vector2D_ae80f9bdf52e62c7285d79bcd10f864e7}{ +\index{mof::Vector2D@{mof::Vector2D}!y@{y}} +\index{y@{y}!mof::Vector2D@{mof::Vector2D}} +\subsubsection[{y}]{\setlength{\rightskip}{0pt plus 5cm}{\bf real} {\bf mof::Vector2D::y}}} +\label{structmof_1_1Vector2D_ae80f9bdf52e62c7285d79bcd10f864e7} + + + Vector2D.hpp の 10 行で定義されています。 + +この構造体の説明は次のファイルから生成されました:\begin{DoxyCompactItemize} +\item +mof/math/\hyperlink{Vector2D_8hpp}{Vector2D.hpp}\item +mof/math/\hyperlink{Vector2D_8cpp}{Vector2D.cpp}\end{DoxyCompactItemize} diff --git a/src/doc/latex/tstring_8hpp.tex b/src/doc/latex/tstring_8hpp.tex new file mode 100644 index 0000000..769e9e9 --- /dev/null +++ b/src/doc/latex/tstring_8hpp.tex @@ -0,0 +1,27 @@ +\hypertarget{tstring_8hpp}{ +\section{mof/base/tstring.hpp} +\label{tstring_8hpp}\index{mof/base/tstring.hpp@{mof/base/tstring.hpp}} +} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof}{mof} +\end{DoxyCompactItemize} +\subsection*{型定義} +\begin{DoxyCompactItemize} +\item +typedef TCHAR \hyperlink{tstring_8hpp_ae5b56a1d757792dc378e2750af10d392}{char} +\item +typedef std::basic\_\-string$<$ TCHAR $>$ \hyperlink{namespacemof_ac5bfa05fda9898bdc5f163179389d944}{mof::tstring} +\end{DoxyCompactItemize} + + +\subsection{型定義} +\hypertarget{tstring_8hpp_ae5b56a1d757792dc378e2750af10d392}{ +\index{tstring.hpp@{tstring.hpp}!char@{char}} +\index{char@{char}!tstring.hpp@{tstring.hpp}} +\subsubsection[{char}]{\setlength{\rightskip}{0pt plus 5cm}typedef TCHAR {\bf char}}} +\label{tstring_8hpp_ae5b56a1d757792dc378e2750af10d392} + + + tstring.hpp の 5 行で定義されています。 \ No newline at end of file diff --git a/src/doc/latex/vector2_8hpp.tex b/src/doc/latex/vector2_8hpp.tex new file mode 100644 index 0000000..b4af31f --- /dev/null +++ b/src/doc/latex/vector2_8hpp.tex @@ -0,0 +1,16 @@ +\hypertarget{vector2_8hpp}{ +\section{mof/math/vector2.hpp} +\label{vector2_8hpp}\index{mof/math/vector2.hpp@{mof/math/vector2.hpp}} +} +\subsection*{構成} +\begin{DoxyCompactItemize} +\item +class \hyperlink{classmof_1_1math_1_1vector2}{mof::math::vector2} +\begin{DoxyCompactList}\small\item\em 2次元ベクトルクラス \item\end{DoxyCompactList}\end{DoxyCompactItemize} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof}{mof} +\item +namespace \hyperlink{namespacemof_1_1math}{mof::math} +\end{DoxyCompactItemize} diff --git a/src/doc/latex/vector3_8hpp.tex b/src/doc/latex/vector3_8hpp.tex new file mode 100644 index 0000000..c2a2b46 --- /dev/null +++ b/src/doc/latex/vector3_8hpp.tex @@ -0,0 +1,16 @@ +\hypertarget{vector3_8hpp}{ +\section{mof/math/vector3.hpp} +\label{vector3_8hpp}\index{mof/math/vector3.hpp@{mof/math/vector3.hpp}} +} +\subsection*{構成} +\begin{DoxyCompactItemize} +\item +class \hyperlink{classmof_1_1math_1_1vector3}{mof::math::vector3} +\begin{DoxyCompactList}\small\item\em 3次元ベクトルクラス \item\end{DoxyCompactList}\end{DoxyCompactItemize} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof}{mof} +\item +namespace \hyperlink{namespacemof_1_1math}{mof::math} +\end{DoxyCompactItemize} diff --git a/src/doc/latex/vector4_8hpp.tex b/src/doc/latex/vector4_8hpp.tex new file mode 100644 index 0000000..75c4342 --- /dev/null +++ b/src/doc/latex/vector4_8hpp.tex @@ -0,0 +1,16 @@ +\hypertarget{vector4_8hpp}{ +\section{mof/math/vector4.hpp} +\label{vector4_8hpp}\index{mof/math/vector4.hpp@{mof/math/vector4.hpp}} +} +\subsection*{構成} +\begin{DoxyCompactItemize} +\item +class \hyperlink{classmof_1_1math_1_1vector4}{mof::math::vector4} +\begin{DoxyCompactList}\small\item\em 4次元ベクトルクラス \item\end{DoxyCompactList}\end{DoxyCompactItemize} +\subsection*{ネームスペース} +\begin{DoxyCompactItemize} +\item +namespace \hyperlink{namespacemof}{mof} +\item +namespace \hyperlink{namespacemof_1_1math}{mof::math} +\end{DoxyCompactItemize} diff --git a/src/doc/latex/vector_8hpp.tex b/src/doc/latex/vector_8hpp.tex new file mode 100644 index 0000000..57864fc --- /dev/null +++ b/src/doc/latex/vector_8hpp.tex @@ -0,0 +1,4 @@ +\hypertarget{vector_8hpp}{ +\section{mof/math/vector.hpp} +\label{vector_8hpp}\index{mof/math/vector.hpp@{mof/math/vector.hpp}} +} diff --git a/src/mof/math/Vector2D.cpp b/src/mof/math/Vector2D.cpp deleted file mode 100644 index 0467c32..0000000 --- a/src/mof/math/Vector2D.cpp +++ /dev/null @@ -1,75 +0,0 @@ - -#include "mof/Vector2D.hpp" - -mof::Vector2D::Vector2D(real x_ , real y_) -: x(x_) , y(y_) -{} - -mof::Vector2D::Vector2D(int x_ , int y_) -: x(mof::int2real(x_)) , y(mof::int2real(y_)) -{} - - -mof::Vector2D::Vector2D(){ - x = y = 0; -} - -mof::Vector2D::~Vector2D(void) -{ -} - - -bool mof::Vector2D::operator == (const mof::Vector2D& obj) const{ - if(x == obj.x && y == obj.y)return true; - else return false; -} - -bool mof::Vector2D::operator != (const mof::Vector2D& obj) const{ - return !(*this == obj); -} - -mof::Vector2D mof::Vector2D::operator - () const{ - return mof::Vector2D( -x , -y); -} - - - -mof::Vector2D mof::Vector2D::operator +( const mof::Vector2D& rhs) const{ - return mof::Vector2D(this->x + rhs.x , this->y + rhs.y); -} - - -mof::Vector2D mof::Vector2D::operator -( const mof::Vector2D& rhs) const{ - return mof::Vector2D(this->x - rhs.x , this->y - rhs.y); -} - -mof::Vector2D mof::Vector2D::operator *(float rhs) const{ - return mof::Vector2D(this->x * rhs , this->y * rhs); -} - - -mof::Vector2D mof::Vector2D::operator /(float rhs) const{ - return mof::Vector2D(this->x / rhs , this->y / rhs); -} - - -mof::Vector2D mof::operator *(const mof::Vector2D& vec , float f){ - mof::Vector2D obj; - obj.x = vec.x * f; - obj.y = vec.y * f; - return obj; -} - -mof::Vector2D mof::operator *(float f , const mof::Vector2D& vec ){ - mof::Vector2D obj; - obj.x = vec.x * f; - obj.y = vec.y * f; - return obj; -} - -std::ostream& mof::operator <<(std::ostream& os , const mof::Vector2D& obj) -{ - os << '(' << obj.x << ',' << obj.y << ')'; - return os; -} - diff --git a/src/mof/math/Vector2D.hpp b/src/mof/math/Vector2D.hpp deleted file mode 100644 index f83dd8b..0000000 --- a/src/mof/math/Vector2D.hpp +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef VECTOR2D_HPP -#define VECTOR2D_HPP -#include -#include - -namespace mof{ - - struct Vector2D - { - real x , y; - - Vector2D(real x_ , real y_); - Vector2D(int x_ , int y_); - Vector2D(); - ~Vector2D(void); - - mof::Vector2D operator +(const mof::Vector2D& rhs) const; - mof::Vector2D operator -(const mof::Vector2D& rhs) const; - mof::Vector2D operator *(float rhs) const; - mof::Vector2D operator /(float rhs) const; - - bool operator ==(const mof::Vector2D& obj) const; - bool operator !=(const mof::Vector2D& obj) const; - mof::Vector2D operator -( ) const; - - friend mof::Vector2D operator *(const mof::Vector2D& vec , real f); - friend mof::Vector2D operator *(real f , const mof::Vector2D & vec); - friend std::ostream& operator <<(std::ostream& os , const Vector2D& obj ); - - }; - -}; - -#endif diff --git a/src/mof/math/basic_vector.hpp b/src/mof/math/basic_vector.hpp index c298788..4ab0cb4 100644 --- a/src/mof/math/basic_vector.hpp +++ b/src/mof/math/basic_vector.hpp @@ -1,26 +1,148 @@ #pragma once #include +#include +#include namespace mof { namespace math { - template - class basic_vector + /** + * @brief 基底ベクトルテンプレートクラス + * @note このテンプレートから直接特殊化することは想定していない.あくまでvectorxを実装 + * するための補助テンプレートである. + * @tparam Dim ベクトルの次元(要素数) + * @tparam Derived 特殊化されたテンプレートの派生クラス(vectorx)の型 + */ + template + class basic_vector + : boost::addable< Derived + , boost::addable2< Derived, real + , boost::subtractable< Derived + , boost::subtractable2< Derived, real + , boost::multipliable2< Derived, real + , boost::dividable2< Derived, real + , boost::equality_comparable< Derived + > > > > > > > { - protected: - real components_[Dim]; + real components_[Dim];///< 要素の配列 public: - - basic_vector operator+(const basic_vector& rhs) + // コンストラクタ,デストラクタはデフォルトのものを使う + // 代入演算子,コピーコンストラクタはデフォルトのものを使う +//{{{ operator += + Derived& operator+=(const Derived& rhs) + { + for (size_t i = 0; i < Dim; ++i) components_[i] += rhs.components_[i]; + return *reinterpret_cast(this);//thisがDerived型であることは保証されている. + } + + Derived& operator+=(real rhs) { - basic_vector retval; - for (size_t i = 0; i < Dim; ++i)retval.components_[i] = components_[i] + rhs.components_[i]; + for (size_t i = 0; i < Dim; ++i) components_[i] += rhs; + return *reinterpret_cast(this);//thisがDerived型であることは保証されている. + } + + friend Derived operator+(real rhs1, Derived& rhs2) + { + Derived retval; + for (size_t i = 0; i < Dim; ++i) retval.components_[i] = rhs1 + rhs2.components_[i]; return retval; } +//}}} +//{{{ operator -= + Derived& operator-=(const Derived& rhs) + { + for (size_t i = 0; i < Dim; ++i) components_[i] -= rhs.components_[i]; + return *reinterpret_cast(this);//thisがDerived型であることは保証されている. + } + + Derived& operator-=(real rhs) + { + for (size_t i = 0; i < Dim; ++i) components_[i] -= rhs; + return *reinterpret_cast(this);//thisがDerived型であることは保証されている. + } + friend Derived operator-(real rhs1, Derived& rhs2) + { + Derived retval; + for (size_t i = 0; i < Dim; ++i) retval.components_[i] = rhs1 - rhs2.components_[i]; + return retval; + } +//}}} +//{{{ operator *= + Derived& operator*=(real rhs) + { + for (size_t i = 0; i < Dim; ++i) components_[i] *= rhs; + return *reinterpret_cast(this);//thisがDerived型であることは保証されている. + } + + friend Derived operator*(real rhs1, Derived& rhs2) + { + Derived retval; + for (size_t i = 0; i < Dim; ++i) retval.components_[i] = rhs1 * rhs2.components_[i]; + return retval; + } +//}}} +//{{{ operator /= + Derived& operator/=(real rhs) + { + for (size_t i = 0; i < Dim; ++i) components_[i] /= rhs; + return *reinterpret_cast(this);//thisがDerived型であることは保証されている. + } + + friend Derived operator/(real rhs1, Derived& rhs2) + { + Derived retval; + for (size_t i = 0; i < Dim; ++i) retval.components_[i] = rhs1 / rhs2.components_[i]; + return retval; + } +//}}} +//{{{ operator[] + /** + * @brief 添字による要素へのアクセス + * @param [in] index 添字.最大値はDim-1 + * @return 引数で指定した要素の参照 + */ real& operator[](size_t index){ return components_[index]; } + + /** + * @brief 添字による要素へのアクセス(const版) + * @param [in] index 添字.最大値はDim-1 + * @return 引数で指定した要素の参照 + */ const real& operator[](size_t index) const { return components_[index]; } +//}}} +//{{{ operator == + bool operator==(const Derived& rhs) const + { + for (size_t i = 0; i < Dim; ++i) + { + if (components_[i] != rhs.components_[i]) return false; + } + return true; + } +//}}} +//{{{ operator << + /** + * @brief デバッグ出力用ストリーム演算子 + * @param [in] stream 出力ストリーム + * @param [in] rhs 出力対象となるベクトルオブジェクト + * @return 引数で与えられた出力ストリーム + */ + friend std::ostream& operator<< + ( + std::ostream& stream, + const Derived& rhs + ) + { + for (size_t i = 0; i < Dim; ++i) + { + if (i != 0) stream << ", "; + stream << rhs.components_[i]; + } + return stream; + } +//}}} }; diff --git a/src/mof/math/vector.hpp b/src/mof/math/vector.hpp new file mode 100644 index 0000000..f6b86b4 --- /dev/null +++ b/src/mof/math/vector.hpp @@ -0,0 +1,7 @@ +/** + * @file 各次元のベクトルをまとめてインクルードするためのヘッダ + */ +#pragma once +#include +#include +#include diff --git a/src/mof/math/vector2.hpp b/src/mof/math/vector2.hpp new file mode 100644 index 0000000..192a236 --- /dev/null +++ b/src/mof/math/vector2.hpp @@ -0,0 +1,45 @@ +#pragma once +#include + +namespace mof +{ +namespace math +{ + /** + * @brief 2次元ベクトルクラス + */ + class vector2 : public basic_vector<2, vector2> + { + public: +//{{{ constructor + /** + * @brief デフォルトコンストラクタ.全ての要素を0で初期化する. + */ + vector2() + { + this->x() = 0; + this->y() = 0; + } + + /** + * @brief 指定した値で初期化する. + * @param [in] x x座標成分 + * @param [in] y y座標成分 + */ + vector2(real x, real y) + { + this->x() = x; + this->y() = y; + } +//}}} +//{{{ accesser + real& x(){ return (*this)[0]; } + const real& x() const { return (*this)[0]; } + + real& y(){ return (*this)[1]; } + const real& y() const { return (*this)[1]; } +//}}} + }; + +}// namespace math +}// namespace mof diff --git a/src/mof/math/vector3.hpp b/src/mof/math/vector3.hpp new file mode 100644 index 0000000..87b0c03 --- /dev/null +++ b/src/mof/math/vector3.hpp @@ -0,0 +1,64 @@ +#pragma once +#include +#include + +namespace mof +{ +namespace math +{ + /** + * @brief 3次元ベクトルクラス + */ + class vector3 : public basic_vector<3, vector3> + { + public: +//{{{ constructor + /** + * @brief デフォルトコンストラクタ.全ての要素を0で初期化する. + */ + vector3() + { + this->x() = 0; + this->y() = 0; + this->z() = 0; + } + + /** + * @brief 指定した値で初期化する. + * @param [in] x x座標成分 + * @param [in] y y座標成分 + * @param [in] z z座標成分 + */ + vector3(real x, real y, real z) + { + this->x() = x; + this->y() = y; + this->z() = z; + } + + /** + * @brief 指定した値で初期化する. + * @param [in] xy 2次元ベクトル + * @param [in] z z座標成分 + */ + vector3(const vector2& xy, real z = 1) + { + this->x() = xy.x(); + this->y() = xy.y(); + this->z() = z; + } +//}}} +//{{{ accesser + real& x(){ return (*this)[0]; } + const real& x() const { return (*this)[0]; } + + real& y(){ return (*this)[1]; } + const real& y() const { return (*this)[1]; } + + real& z(){ return (*this)[2]; } + const real& z() const { return (*this)[2]; } +//}}} + }; + +}// namespace math +}// namespace mof diff --git a/src/mof/math/vector4.hpp b/src/mof/math/vector4.hpp new file mode 100644 index 0000000..f36dbbd --- /dev/null +++ b/src/mof/math/vector4.hpp @@ -0,0 +1,71 @@ +#pragma once +#include +#include + +namespace mof +{ +namespace math +{ + /** + * @brief 4次元ベクトルクラス + */ + class vector4 : public basic_vector<4, vector4> + { + public: +//{{{ constructor + /** + * @brief デフォルトコンストラクタ.全ての要素を0で初期化する. + */ + vector4() + { + this->x() = 0; + this->y() = 0; + this->z() = 0; + this->w() = 0; + } + + /** + * @brief 指定した値で初期化する. + * @param [in] x x座標成分 + * @param [in] y y座標成分 + * @param [in] z z座標成分 + * @param [in] w w座標成分 + */ + vector4(real x, real y, real z, real w) + { + this->x() = x; + this->y() = y; + this->z() = z; + this->w() = w; + } + + /** + * @brief 指定した値で初期化する. + * @param [in] xyz 3次元ベクトル + * @param [in] w w座標成分 + */ + vector4(const vector3& xyz, real w = 1) + { + this->x() = xyz.x(); + this->y() = xyz.y(); + this->z() = xyz.z(); + this->w() = w; + } +//}}} +//{{{ accesser + real& x(){ return (*this)[0]; } + const real& x() const { return (*this)[0]; } + + real& y(){ return (*this)[1]; } + const real& y() const { return (*this)[1]; } + + real& z(){ return (*this)[2]; } + const real& z() const { return (*this)[2]; } + + real& w(){ return (*this)[3]; } + const real& w() const { return (*this)[3]; } +//}}} + }; + +}// namespace math +}// namespace mof diff --git a/test/Makefile b/test/Makefile index f766d4e..a942605 100644 --- a/test/Makefile +++ b/test/Makefile @@ -7,10 +7,10 @@ # ¥³¥ó¥Ñ¥¤¥ë¡¦·ë¹ç¤·¤Æºî¤é¤ì¤ëºÇ½ªÅª¤Ê¥é¥¤¥Ö¥é¥ê¥Õ¥¡¥¤¥ë¤Î̾Á° TARGET = \ - vectorx_test + vector_test SOURCES = \ - mof/math/vectorx_test.cpp + mof/math/vector_test.cpp HEADERS = \ @@ -34,11 +34,27 @@ LIBS += \ -L../src -lmof test: - @if ! ./vectorx_test; then exit1; fi + @if ! ./vector_test; then exit1; fi depend: makedepend -Y $(HEADER_CXXFLAGS) -- $(SOURCES) # DO NOT DELETE -mof/math/vectorx_test.o: ../src/mof/math/basic_vector.hpp -mof/math/vectorx_test.o: ../src/mof/base/mofdef.hpp +mof/math/vector_test.o: ../src/mof/math/vector.hpp +mof/math/vector_test.o: ../src/mof/math/vector2.hpp +mof/math/vector_test.o: ../src/mof/math/basic_vector.hpp +mof/math/vector_test.o: ../src/mof/base/mofdef.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/operators.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config/user.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config/select_compiler_config.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config/compiler/gcc.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config/select_stdlib_config.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config/no_tr1/utility.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config/select_platform_config.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config/suffix.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/iterator.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/config.hpp +mof/math/vector_test.o: /home/yasutomo/boost_1_41_0/boost/detail/workaround.hpp +mof/math/vector_test.o: ../src/mof/math/vector3.hpp +mof/math/vector_test.o: ../src/mof/math/vector4.hpp diff --git a/test/Makefile.bak b/test/Makefile.bak index c6c3e3e..257ef44 100644 --- a/test/Makefile.bak +++ b/test/Makefile.bak @@ -6,10 +6,11 @@ # # ¥³¥ó¥Ñ¥¤¥ë¡¦·ë¹ç¤·¤Æºî¤é¤ì¤ëºÇ½ªÅª¤Ê¥é¥¤¥Ö¥é¥ê¥Õ¥¡¥¤¥ë¤Î̾Á° -TARGET = vectorx_test +TARGET = \ + vector_test SOURCES = \ - mof/math/vectorx_test.cpp + mof/math/vector_test.cpp HEADERS = \ @@ -32,9 +33,25 @@ LIBS += \ $(boost_LIBS) -lboost_thread -lboost_filesystem\ -L../src -lmof +test: + @if ! ./vector_test; then exit1; fi + depend: makedepend -Y $(HEADER_CXXFLAGS) -- $(SOURCES) # DO NOT DELETE +mof/math/vectorx_test.o: ../src/mof/math/vector2.hpp mof/math/vectorx_test.o: ../src/mof/math/basic_vector.hpp mof/math/vectorx_test.o: ../src/mof/base/mofdef.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/operators.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config/user.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config/select_compiler_config.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config/compiler/gcc.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config/select_stdlib_config.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config/no_tr1/utility.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config/select_platform_config.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config/suffix.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/iterator.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/config.hpp +mof/math/vectorx_test.o: /home/yasutomo/boost_1_41_0/boost/detail/workaround.hpp diff --git a/test/mof/math/vector_test.cpp b/test/mof/math/vector_test.cpp new file mode 100644 index 0000000..c9425ed --- /dev/null +++ b/test/mof/math/vector_test.cpp @@ -0,0 +1,20 @@ +#include +#include +#include + +int main() +{ + mof::math::vector2 v(0,0), w(1,1); + v[0] = 1; + w[0] = 2; + v = v + w; v = v + 2.0; v = 3.0 + w; v += w; v += 1; + v = v - w; v = v - 2.0; v = 3.0 - w; v -= w; v -= 1; + v = v * 2.0; v = 3.0 * w; v *= 2; + v = v / 2.0; v = 3.0 / w; v /= 2; + v == w; v != w; + std::stringstream ss; + ss << v << std::endl; + std::cout << ss.str(); + std::cout << "test success" << std::endl; + return 0; +} diff --git a/test/mof/math/vector_test.o b/test/mof/math/vector_test.o new file mode 100644 index 0000000..ab4de2d Binary files /dev/null and b/test/mof/math/vector_test.o differ diff --git a/test/mof/math/vectorx_test.cpp b/test/mof/math/vectorx_test.cpp deleted file mode 100644 index e906bd5..0000000 --- a/test/mof/math/vectorx_test.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include -#include - -int main() -{ - mof::math::basic_vector<2> v, w; - v[0] = 1; - w[0] = 2; - v = v + w; - std::cout << "test success" << std::endl; - return 0; -} diff --git a/test/mof/math/vectorx_test.o b/test/mof/math/vectorx_test.o deleted file mode 100644 index ad2201f..0000000 Binary files a/test/mof/math/vectorx_test.o and /dev/null differ diff --git a/test/vector_test b/test/vector_test new file mode 100755 index 0000000..9ea0d8f Binary files /dev/null and b/test/vector_test differ diff --git a/test/vectorx_test b/test/vectorx_test deleted file mode 100755 index 5357883..0000000 Binary files a/test/vectorx_test and /dev/null differ